aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/sql/RowSetInternal.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/sql/RowSetInternal.java')
-rw-r--r--libjava/javax/sql/RowSetInternal.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/javax/sql/RowSetInternal.java b/libjava/javax/sql/RowSetInternal.java
index 1fd900b..8feaa27 100644
--- a/libjava/javax/sql/RowSetInternal.java
+++ b/libjava/javax/sql/RowSetInternal.java
@@ -50,25 +50,25 @@ public interface RowSetInternal
/**
* @since 1.4
*/
- public Object[] getParams() throws SQLException;
+ Object[] getParams() throws SQLException;
/**
* @since 1.4
*/
- public Connection getConnection() throws SQLException;
+ Connection getConnection() throws SQLException;
/**
* @since 1.4
*/
- public void setMetaData(RowSetMetaData md) throws SQLException;
+ void setMetaData(RowSetMetaData md) throws SQLException;
/**
* @since 1.4
*/
- public ResultSet getOriginal() throws SQLException;
+ ResultSet getOriginal() throws SQLException;
/**
* @since 1.4
*/
- public ResultSet getOriginalRow() throws SQLException;
+ ResultSet getOriginalRow() throws SQLException;
}