ICU-8877 Fixed a Java compiler warning (redundant type cast).

X-SVN-Rev: 31088
This commit is contained in:
Yoshito Umaoka 2011-12-09 23:20:15 +00:00
parent a969c18618
commit 744682621a

View File

@ -465,7 +465,7 @@ public class GlobalizationPreferences implements Freezable<GlobalizationPreferen
if (timezone == null) {
return guessTimeZone();
}
return (TimeZone) timezone.cloneAsThawed(); // clone for safety
return timezone.cloneAsThawed(); // clone for safety
}
/**