From 8ff0266a576583ed5b398b6eb2dfbb9d2de22f3e Mon Sep 17 00:00:00 2001 From: timsixth Date: Mon, 23 Sep 2024 14:47:20 +0200 Subject: [PATCH] JavaDoc in AbstractMongoDbLoader class has been improved --- .../module/mongodb/core/loader/AbstractMongoDbLoader.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mongodb-support/src/main/java/pl/timsixth/minigameapi/api/module/mongodb/core/loader/AbstractMongoDbLoader.java b/mongodb-support/src/main/java/pl/timsixth/minigameapi/api/module/mongodb/core/loader/AbstractMongoDbLoader.java index 6a37f5c..4a454e5 100644 --- a/mongodb-support/src/main/java/pl/timsixth/minigameapi/api/module/mongodb/core/loader/AbstractMongoDbLoader.java +++ b/mongodb-support/src/main/java/pl/timsixth/minigameapi/api/module/mongodb/core/loader/AbstractMongoDbLoader.java @@ -17,16 +17,16 @@ public void load() { } /** - * Gets table name which loader will load data + * Gets collection name which loader will load data * - * @return table name + * @return collection name */ protected abstract String getCollectionName(); /** - * Gets table name with minigame tables' prefix + * Gets collection name with minigame tables' prefix * - * @return table name with minigame tables' prefix + * @return collection name with minigame tables' prefix */ protected String getCollectionNameWithPrefix() { return MiniGame.getInstance().getPluginConfiguration().getTablesPrefix() + getCollectionName();