Skip to content

Commit 455509c

Browse files
authored
Remove caffeine library from BukkitLibraryService
Removed caffeine library definition and its usage in loadRequired method.
1 parent e03d2ef commit 455509c

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

bukkit/src/main/java/io/wdsj/asw/bukkit/service/BukkitLibraryService.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ public class BukkitLibraryService {
5353
.version("0.27.0")
5454
.build();
5555

56-
private static final Library caffeine = Library.builder()
57-
.groupId("com{}github{}ben-manes{}caffeine")
58-
.artifactId("caffeine")
59-
.resolveTransitiveDependencies(false)
60-
.version("2.9.3")
61-
.build();
62-
6356
public BukkitLibraryService(AdvancedSensitiveWords plugin) {
6457
libraryManager = new BukkitLibraryManager(plugin);
6558
if (Locale.getDefault().getCountry().toUpperCase(Locale.ROOT).equals("CN")) {
@@ -74,7 +67,7 @@ public BukkitLibraryService(AdvancedSensitiveWords plugin) {
7467
}
7568

7669
public void loadRequired() {
77-
libraryManager.loadLibraries(caffeine);
70+
// todo
7871
}
7972
public void loadOllamaOptional() {
8073
libraryManager.loadLibraries(ollama4j, lombok, slf4j, jackson, jackson_jsr310, logback);

0 commit comments

Comments
 (0)