* java/sql/Types.java (Types): New constructor.
From-SVN: r46466
This commit is contained in:
parent
80965c18cc
commit
44d8e21c1e
2 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue