* java/sql/Types.java (Types): New constructor.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Oct 2001 18:04:23 +0000 (18:04 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Oct 2001 18:04:23 +0000 (18:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46466 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/sql/Types.java

index 87c1c6e..6a366c5 100644 (file)
@@ -1,3 +1,7 @@
+2001-10-24  Tom Tromey  <tromey@redhat.com>
+
+       * java/sql/Types.java (Types): New constructor.
+
 Tue Oct 23 23:52:18 2001  Anthony Green  <green@redhat.com>
 
        * gnu/gcj/runtime/natSharedLibLoader.cc: Only include dlfcn.h when
index 5e734d0..afc1521 100644 (file)
@@ -1,5 +1,5 @@
 /* Types.java -- SQL type constants
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2001 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -67,5 +67,10 @@ public static final int BLOB = 2004;
 public static final int CLOB = 2005;
 public static final int REF = 2006;
 
+  // This class can't be instantiated.
+  private Types ()
+  {
+  }
+
 } // class Types