Skip to content

Commit

Permalink
'#1559: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
lfcnassif committed Mar 28, 2023
1 parent 4cce3ba commit c611494
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ private List<Message> extractCalls(Connection conn, Chat c) throws SQLException

return messages;
}

private List<Message> extractMessages(Connection conn, Chat c) throws SQLException {
List<Message> messages = new ArrayList<>();
try (PreparedStatement stmt = conn.prepareStatement(getSelectMessagesQuery(conn))) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ public String getUniqueId() {
if (deletedId == -1) {
deletedId = deletedCounter.getAndIncrement();
}
if(deleted) {
new_id+="_" + deletedId;
if (deleted) {
new_id += "_" + deletedId;
}
return new_id;
}
Expand Down

0 comments on commit c611494

Please sign in to comment.