Remove resolved TODOs
This commit is contained in:
parent
4b4dc74cbf
commit
28603ec8c5
@ -136,7 +136,7 @@ public class SnapshotRepository
|
||||
{
|
||||
String token = getUnusedToken(connection);
|
||||
PreparedStatement insertSnapshotStatement = connection.prepareStatement(INSERT_SNAPSHOT, new String[]{"id"});
|
||||
insertSnapshotStatement.setString(1, token); // TODO: correct data type
|
||||
insertSnapshotStatement.setString(1, token);
|
||||
|
||||
if (creatorAccount != null)
|
||||
{
|
||||
@ -179,7 +179,7 @@ public class SnapshotRepository
|
||||
{
|
||||
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())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user