From f9fa1af9637f812133fbb3d1f37d0d593e8fd5d1 Mon Sep 17 00:00:00 2001 From: Patrick <147879351+WinniePatGG@users.noreply.github.com> Date: Thu, 4 Jun 2026 01:40:09 +0200 Subject: [PATCH] Removed useless dependencies and fixed a typo --- build.gradle | 6 ------ src/main/java/de/winniepat/licenselib/LicenseClient.java | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index b90051e..30fcfa9 100644 --- a/build.gradle +++ b/build.gradle @@ -21,12 +21,6 @@ repositories { } dependencies { - implementation("tools.jackson.core:jackson-databind:3.1.4") - implementation("tools.jackson.dataformat:jackson-dataformat-yaml:3.1.4") - - testImplementation platform('org.junit:junit-bom:5.11.4') - testImplementation 'org.junit.jupiter:junit-jupiter' - testRuntimeOnly 'org.junit.platform:junit-platform-launcher' implementation 'com.google.code.gson:gson:2.13.1' } diff --git a/src/main/java/de/winniepat/licenselib/LicenseClient.java b/src/main/java/de/winniepat/licenselib/LicenseClient.java index 684169d..1cc2a1d 100644 --- a/src/main/java/de/winniepat/licenselib/LicenseClient.java +++ b/src/main/java/de/winniepat/licenselib/LicenseClient.java @@ -53,7 +53,7 @@ public class LicenseClient { * @param plugin Plugin id matching the one on the backend api * @param licenseKey License key issued by the api * @param serverId Server id matching the one on the backend api - * @return CompletabaleFuture with the LicenseResult from the backend + * @return CompletableFuture with the LicenseResult from the backend */ public static CompletableFuture checkAsync(String apiUrl, String plugin, String licenseKey, String serverId) { try {