summaryrefslogtreecommitdiff
path: root/java/sql
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-10-24 17:59:58 +0000
committerTom Tromey <tromey@redhat.com>2001-10-24 17:59:58 +0000
commit81f10bd9cab3969529746437db06b44b69772522 (patch)
treef8650f43dee0a71b2a4150966cd963e37e69ee7a /java/sql
parent2ae6c98929254054886ac339ba0a52ed7b80ffee (diff)
downloadclasspath-81f10bd9cab3969529746437db06b44b69772522.tar.gz
* java/sql/Types.java (Types): New constructor.
Diffstat (limited to 'java/sql')
-rw-r--r--java/sql/Types.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/java/sql/Types.java b/java/sql/Types.java
index 5e734d0fc..afc15211f 100644
--- a/java/sql/Types.java
+++ b/java/sql/Types.java
@@ -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