2003-10-13 Michael Koch <konqueror@gmx.de>
* java/net/java/net/URLStreamHandlerFactory.java (createURLStreamHandler): Removed redundant "public" modifier. * java/sql/DatabaseMetaData.java: (DatabaseMetaData): Readded accidently removed "public" modifier. * java/sql/ParameterMetaData.java: (ParameterMetaData): Readded accidently removed "public" modifier. * java/sql/PreparedStatement.java: (PreparedStatement): Readded accidently removed "public" modifier. * java/sql/Ref.java: (Ref): Readded accidently removed "public" modifier. From-SVN: r72419
This commit is contained in:
parent
1adef66864
commit
9917dcbafe
6 changed files with 18 additions and 5 deletions
|
@ -61,7 +61,7 @@ public interface URLStreamHandlerFactory
|
|||
*
|
||||
* @return The <code>URLStreamHandler</code> for the specified protocol
|
||||
*/
|
||||
public URLStreamHandler createURLStreamHandler(String protocol);
|
||||
URLStreamHandler createURLStreamHandler (String protocol);
|
||||
|
||||
} // interface URLStreamHandlerFactory
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ exception statement from your version. */
|
|||
|
||||
package java.sql;
|
||||
|
||||
interface DatabaseMetaData
|
||||
public interface DatabaseMetaData
|
||||
{
|
||||
/**
|
||||
* It is unknown whether or not the procedure returns a result.
|
||||
|
|
|
@ -40,7 +40,7 @@ package java.sql;
|
|||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
interface ParameterMetaData
|
||||
public interface ParameterMetaData
|
||||
{
|
||||
int parameterNoNulls = 0;
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ import java.util.Calendar;
|
|||
*
|
||||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
*/
|
||||
interface PreparedStatement extends Statement
|
||||
public interface PreparedStatement extends Statement
|
||||
{
|
||||
/**
|
||||
* This method executes a prepared SQL query and returns its ResultSet.
|
||||
|
|
|
@ -46,7 +46,7 @@ import java.util.Map;
|
|||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
* @since 1.2
|
||||
*/
|
||||
interface Ref
|
||||
public interface Ref
|
||||
{
|
||||
/**
|
||||
* This method returns the fully qualified name of the SQL structured
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue