9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-25 09:39:18 +00:00

refactor: Remove debug print statements

This commit is contained in:
William
2024-06-15 18:16:56 +01:00
parent 332c71f041
commit 3d5395e5ae

View File

@@ -189,7 +189,6 @@ public class MongoDbDatabase extends Database {
@Blocking
@Override
public Optional<DataSnapshot.Packed> getLatestSnapshot(@NotNull User user) {
System.out.println("Getting user latest snapshot " + user.getUsername());
try {
Document filter = new Document("player_uuid", user.getUuid());
Document sort = new Document("timestamp", -1); // -1 = Descending
@@ -361,7 +360,6 @@ public class MongoDbDatabase extends Database {
@Blocking
@Override
protected void createSnapshot(@NotNull User user, @NotNull DataSnapshot.Packed data) {
System.out.println("Creating user snapshot " + user.getUsername());
try {
Document doc = new Document("player_uuid", user.getUuid())
.append("version_uuid", data.getId())