Skip to content

Commit

Permalink
chore(mongo-impl): remove old superclass methods
Browse files Browse the repository at this point in the history
  • Loading branch information
aivruu authored Jan 29, 2024
1 parent 3f8d313 commit 34a20c8
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 34a20c8

Please sign in to comment.