From e90f3a2a5f69b7a227289a58774825fd1e41b93b Mon Sep 17 00:00:00 2001 From: Pyrbu Date: Wed, 14 Jun 2023 00:04:35 +0200 Subject: [PATCH] fix comment typo caused by stupid intellij refactoring comments :facepalm: --- .../java/lol/pyr/znpcsplus/reflection/ReflectionPackage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/lol/pyr/znpcsplus/reflection/ReflectionPackage.java b/plugin/src/main/java/lol/pyr/znpcsplus/reflection/ReflectionPackage.java index fe4a77c..c58b4c3 100644 --- a/plugin/src/main/java/lol/pyr/znpcsplus/reflection/ReflectionPackage.java +++ b/plugin/src/main/java/lol/pyr/znpcsplus/reflection/ReflectionPackage.java @@ -11,7 +11,7 @@ import java.util.stream.Collectors; /** * A class containing getAll of the packages of the server jar that we import classes from. * Every line has a check for the "flattened" variable due to the fact that server jars - * pre-1.17 had getAll of their classes "flattened" into one package. + * pre-1.17 had all of their classes "flattened" into one package. */ public class ReflectionPackage { private static final String VERSION = Bukkit.getServer().getClass().getPackage().getName().split("\\.")[3];