* java/sql/Types.java (Types): New constructor.

From-SVN: r46466
This commit is contained in:
Tom Tromey 2001-10-24 18:04:23 +00:00 committed by Tom Tromey
parent 80965c18cc
commit 44d8e21c1e
2 changed files with 10 additions and 1 deletions

View 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