Remove resolved TODOs

This commit is contained in:
Keir Nellyer 2016-10-14 18:47:25 +01:00
parent 4b4dc74cbf
commit 28603ec8c5
1 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ public class SnapshotRepository
{ {
String token = getUnusedToken(connection); String token = getUnusedToken(connection);
PreparedStatement insertSnapshotStatement = connection.prepareStatement(INSERT_SNAPSHOT, new String[]{"id"}); PreparedStatement insertSnapshotStatement = connection.prepareStatement(INSERT_SNAPSHOT, new String[]{"id"});
insertSnapshotStatement.setString(1, token); // TODO: correct data type insertSnapshotStatement.setString(1, token);
if (creatorAccount != null) if (creatorAccount != null)
{ {
@ -179,7 +179,7 @@ public class SnapshotRepository
{ {
try (PreparedStatement statement = connection.prepareStatement(GET_ID_FROM_TOKEN)) try (PreparedStatement statement = connection.prepareStatement(GET_ID_FROM_TOKEN))
{ {
statement.setString(1, token); // TODO: correct data type statement.setString(1, token);
try (ResultSet resultSet = statement.executeQuery()) try (ResultSet resultSet = statement.executeQuery())
{ {