Skip to content

Commit 5a6dd9f

Browse files
committed
RowMappers.forNameAndId(): remove unused method.
Should be in 029ea8a commit. No functional changes.
1 parent f7f3912 commit 5a6dd9f

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/main/java/ru/mystamps/web/dao/impl/RowMappers.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@ public static Pair<String, Integer> forNameAndCounter(ResultSet rs, int i) throw
5656
);
5757
}
5858

59-
public static Pair<String, Integer> forNameAndId(ResultSet rs, int i) throws SQLException {
60-
return new Pair<>(
61-
rs.getString("name"),
62-
JdbcUtils.getInteger(rs, "id")
63-
);
64-
}
65-
6659
public static SitemapInfoDto forSitemapInfoDto(ResultSet rs, int i) throws SQLException {
6760
return new SitemapInfoDto(
6861
rs.getInt("id"),

0 commit comments

Comments
 (0)