< prev index next >

src/java.base/share/classes/java/util/zip/ZipUtils.java

Print this page
8203328: Rename EFS in java.util.zip internals to something meaningful
Reviewed-by: sherman

@@ -86,11 +86,10 @@
     public static final long fileTimeToUnixTime(FileTime ftime) {
         return ftime.to(TimeUnit.SECONDS);
     }
 
     /**
-     /*
      * Converts DOS time to Java time (number of milliseconds since epoch).
      */
     public static long dosToJavaTime(long dtime) {
         int year = (int) (((dtime >> 25) & 0x7f) + 1980);
         int month = (int) ((dtime >> 21) & 0x0f);
< prev index next >