7090844: Support a timezone whose offset is changed more than once in the future
authorpeytoia
Thu, 15 Sep 2011 14:45:35 +0900
changeset 10592 cbb78809be84
parent 10591 da82afe84ad8
child 10593 680a346c7841
7090844: Support a timezone whose offset is changed more than once in the future Reviewed-by: okutsu
jdk/make/tools/src/build/tools/javazic/Mappings.java
--- a/jdk/make/tools/src/build/tools/javazic/Mappings.java	Wed Sep 14 22:36:02 2011 -0700
+++ b/jdk/make/tools/src/build/tools/javazic/Mappings.java	Thu Sep 15 14:45:35 2011 +0900
@@ -76,8 +76,8 @@
             // If the GMT offset of this Zone will change in some
             // future time, this Zone is added to the exclude list.
             boolean isExcluded = false;
-            if (zone.size() > 1) {
-                ZoneRec zrec = zone.get(zone.size()-2);
+            for (int i = 0; i < zone.size(); i++) {
+                ZoneRec zrec = zone.get(i);
                 if ((zrec.getGmtOffset() != rawOffset)
                     && (zrec.getUntilTime(0) > Time.getCurrentTime())) {
                     if (excludeList == null) {
@@ -85,6 +85,7 @@
                     }
                     excludeList.add(zone.getName());
                     isExcluded = true;
+                    break;
                 }
             }