* java/sql/Types.java (Types): New constructor.
authorTom Tromey <tromey@redhat.com>
Wed, 24 Oct 2001 18:04:23 +0000 (18:04 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 24 Oct 2001 18:04:23 +0000 (18:04 +0000)
From-SVN: r46466

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

index 87c1c6efc7b9adfce805b73aeff456114d27eb26..6a366c5fbd267c30b38b840d361a538302803504 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 5e734d0fce899a1514872420a5213754166a89eb..afc15211fd920965a97dbfc0beae376ea4035ea8 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