From 34a20c8ced2e5cdbbb8b53fd640bc8bc81c72bd4 Mon Sep 17 00:00:00 2001 From: Qekly Date: Sun, 28 Jan 2024 22:33:09 -0300 Subject: [PATCH] chore(mongo-impl): remove old superclass methods --- .../com/aivruu/homes/shared/cloud/MongoDBModelData.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/api/src/main/java/com/aivruu/homes/shared/cloud/MongoDBModelData.java b/api/src/main/java/com/aivruu/homes/shared/cloud/MongoDBModelData.java index 695777e..c789024 100644 --- a/api/src/main/java/com/aivruu/homes/shared/cloud/MongoDBModelData.java +++ b/api/src/main/java/com/aivruu/homes/shared/cloud/MongoDBModelData.java @@ -21,18 +21,13 @@ public class MongoDBModelData implements DataModel { return null; } - @Override - public @NotNull CompletableFuture<@NotNull ValueObjectDataResult<@Nullable List<@NotNull EntityCachedPlayerModel>>> performAsyncCollectionWrite(final @NotNull Collection<@NotNull EntityCachedPlayerModel> modelsCollection) { - return null; - } - @Override public @NotNull CompletableFuture<@NotNull ValueObjectDataResult<@Nullable EntityCachedPlayerModel>> performAsyncWrite(final @NotNull EntityCachedPlayerModel playerModel) { return null; } @Override - public @NotNull CompletableFuture<@NotNull ValueObjectDataResult<@Nullable EntityCachedPlayerModel>> performAsyncRead(final @NotNull String id) { + public @NotNull CompletableFuture<@NotNull ValueObjectDataResult<@Nullable EntityCachedPlayerModel>> performAsyncRead(final @NotNull String name) { return null; } }