Skip to content

Commit fb192f8

Browse files
committed
Rename to DatabaseLoader to DatabaseInteractor and implemented methods. Removed exceptions. TODO: construct the dictionaries in the constructor.
1 parent e2ccd69 commit fb192f8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/main/java/org/hydev/mcpm/client/database/DatabaseInteractor.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ public PluginModel findByName(String name)
5050
return nameIndex.get(name);
5151
}
5252
return null;
53-
54-
// throw new UnsupportedOperationException("TODO");
5553
}
5654

5755
/**
@@ -73,8 +71,6 @@ public List<PluginModel> searchByKeyword(String keyword)
7371
return keywordIndex.get(keyword);
7472
}
7573
return List.of();
76-
77-
// throw new UnsupportedOperationException("TODO");
7874
}
7975

8076
/**
@@ -89,7 +85,5 @@ public List<PluginModel> searchByCommand(String command)
8985
return commandIndex.get(command);
9086
}
9187
return List.of();
92-
93-
// throw new UnsupportedOperationException("TODO");
9488
}
9589
}

0 commit comments

Comments
 (0)