72bcb1
diff --git a/rebase-02.patch b/rebase-02.patch
72bcb1
new file mode 100644
72bcb1
index 0000000..0f57125
72bcb1
--- /dev/null
72bcb1
+++ b/rebase-02.patch
72bcb1
@@ -0,0 +1,36 @@
72bcb1
+--- sun/tools/javazic/Mappings.java.orig       2015-04-13 12:40:26.000000000 -0400
72bcb1
++++ sun/tools/javazic/Mappings.java    2015-04-13 12:42:11.000000000 -0400
72bcb1
+@@ -75,8 +75,10 @@
72bcb1
+           Zone zone = zones.get(zoneName);
72bcb1
+           String zonename = zone.getName();
72bcb1
+           int rawOffset = zone.get(zone.size()-1).getGmtOffset();
72bcb1
++
72bcb1
+           // If the GMT offset of this Zone will change in some
72bcb1
+           // future time, this Zone is added to the exclude list.
72bcb1
++            boolean isExcluded = false;
72bcb1
+           if (zone.size() > 1) {
72bcb1
+               ZoneRec zrec = zone.get(zone.size()-2);
72bcb1
+               if ((zrec.getGmtOffset() != rawOffset)
72bcb1
+@@ -85,7 +87,7 @@
72bcb1
+                       excludeList = new ArrayList<String>();
72bcb1
+                   }
72bcb1
+                   excludeList.add(zone.getName());
72bcb1
+-                  continue;
72bcb1
++                    isExcluded = true;
72bcb1
+               }
72bcb1
+           }
72bcb1
+ 
72bcb1
+@@ -101,9 +103,11 @@
72bcb1
+               rawOffsetsIndex.add(i, rawOffset);
72bcb1
+ 
72bcb1
+               Set<String> perRawOffset = new TreeSet<String>();
72bcb1
+-              perRawOffset.add(zonename);
72bcb1
++                if (!isExcluded) {
72bcb1
++                    perRawOffset.add(zonename);
72bcb1
++                }
72bcb1
+               rawOffsetsIndexTable.add(i, perRawOffset);
72bcb1
+-          } else {
72bcb1
++            } else if (!isExcluded) {
72bcb1
+               int i = rawOffsetsIndex.indexOf(new Integer(rawOffset));
72bcb1
+               Set<String> perRawOffset = rawOffsetsIndexTable.get(i);
72bcb1
+               perRawOffset.add(zonename);