We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa832a commit 9e6c50aCopy full SHA for 9e6c50a
src/main/java/org/maxgamer/quickshop/util/reload/ReloadManager.java
@@ -92,8 +92,9 @@ public synchronized void unregister(@NotNull Class<Reloadable> clazz) {
92
}
93
if (reloadable.getReloadableMethod() != null) {
94
Method method = reloadable.getReloadableMethod();
95
- if (method != null)
+ if (method != null) {
96
return clazz.equals(method.getDeclaringClass());
97
+ }
98
99
return false;
100
});
0 commit comments