mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
Nit
This commit is contained in:
parent
d6a5d8647a
commit
853e12f8a1
2 changed files with 1 additions and 4 deletions
|
@ -119,7 +119,6 @@ public final class LimboResultSet {
|
|||
this.open = false;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public Object get(String columnName) throws SQLException {
|
||||
final int columnsLength = this.columnNames.length;
|
||||
for (int i = 0; i < columnsLength; i++) {
|
||||
|
@ -131,8 +130,6 @@ public final class LimboResultSet {
|
|||
throw new SQLException("column name " + columnName + " not found");
|
||||
}
|
||||
|
||||
// Note that columnIndex starts from 1
|
||||
@Nullable
|
||||
public Object get(int columnIndex) throws SQLException {
|
||||
if (!this.isOpen()) {
|
||||
throw new SQLException("ResultSet is not open");
|
||||
|
|
|
@ -204,7 +204,7 @@ public final class JDBC4PreparedStatement extends JDBC4Statement implements Prep
|
|||
|
||||
@Override
|
||||
public ResultSetMetaData getMetaData() throws SQLException {
|
||||
return this.resultSet;
|
||||
return this.resultSet;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue