< prev index next >

src/java.base/share/classes/java/time/ZoneOffset.java

Print this page
@@ -439,11 +439,10 @@
       * Constructor.
       *
       * @param totalSeconds  the total time-zone offset in seconds, from -64800 to +64800
       */
      private ZoneOffset(int totalSeconds) {
-         super();
          this.totalSeconds = totalSeconds;
          id = buildId(totalSeconds);
      }
  
      private static String buildId(int totalSeconds) {
< prev index next >