Skip to content

Commit

Permalink
refactor: final 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkenhw committed Sep 29, 2023
1 parent b776e9c commit 68f9e4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public RowMapResultSetExecutor(RowMapper<T> rowMapper) {
}

@Override
public List<T> extractData(final ResultSet resultSet) throws SQLException {
final List<T> results = new ArrayList<>();
public List<T> extractData(ResultSet resultSet) throws SQLException {
List<T> results = new ArrayList<>();
while (resultSet.next()) {
results.add(rowMapper.mapRow(resultSet));
}
Expand Down

0 comments on commit 68f9e4f

Please sign in to comment.