We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 138cf66 commit 23652e3Copy full SHA for 23652e3
.gitignore
@@ -45,3 +45,5 @@ hs_err_pid*
45
.settings/
46
.classpath
47
.project
48
+/cache/*
49
+/unit-test.yml
src/main/java/org/maxgamer/quickshop/util/Util.java
@@ -1207,6 +1207,7 @@ public static boolean fireCancellableEvent(@NotNull Cancellable event) {
1207
*/
1208
public static File getCacheFolder() {
1209
QuickShop qs = QuickShop.getInstance();
1210
+ //noinspection ConstantConditions
1211
if (qs != null) {
1212
File cache = new File(QuickShop.getInstance().getDataFolder(), "cache");
1213
if (!cache.exists()) {
0 commit comments