More class library support for SPECjbb
[IRC.git] / Robust / src / ClassLibrary / MGC / gnu / Date.java
index 801c3778ff36336b98d727ce23bec0d8a63c60f0..3069a1e7de48a12a600b6faa98ef5afa5e58b00e 100644 (file)
@@ -161,10 +161,10 @@ public class Date
    * @param month the month as a value between 0 and 11.
    * @param day the day as a value between 0 and 31.
    */
-  public Date(int year, int month, int day)
+  /*public Date(int year, int month, int day)
   {
     this(year, month, day, 0, 0, 0);
-  }
+  }*/
 
   /**
    * Creates a new Date Object representing the given time.
@@ -178,10 +178,10 @@ public class Date
    *        clock notation.
    * @param min the minute as a value between 0 and 59.
    */
-  public Date(int year, int month, int day, int hour, int min)
+  /*public Date(int year, int month, int day, int hour, int min)
   {
     this(year, month, day, hour, min, 0);
-  }
+  }*/
 
   /**
    * Creates a new Date Object representing the given time.
@@ -197,12 +197,12 @@ public class Date
    * @param sec the second as a value between 0 and 61 (with 60
    *        and 61 being leap seconds).
    */
-  public Date(int year, int month, int day, int hour, int min, int sec)
+  /*public Date(int year, int month, int day, int hour, int min, int sec)
   {
     GregorianCalendar cal =
        new GregorianCalendar(year + 1900, month, day, hour, min, sec);
     time = cal.getTimeInMillis();
-  }
+  }*/
 
   /**
    * Creates a new Date from the given string representation.  This