Skip to content

Commit 1b8b49d

Browse files
committed
fix: bugs
1 parent 9a26ce3 commit 1b8b49d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/com/code/advancedsql/query/ExecuteQuery.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ public ResultSet fetchAll() throws SQLException {
5353
public List<Map<String, Object>> fetchAllAsList() throws SQLException {
5454
ResultSet resultSet = this.fetchAll();
5555

56-
List<Map<String, Object>> list = ISQL.convertResultSetToList(resultSet);
57-
58-
return list;
56+
return ISQL.convertResultSetToList(resultSet);
5957
}
6058

6159
/**

0 commit comments

Comments
 (0)