Removed idiotic if statement

This commit is contained in:
Auxilor 2020-12-12 13:45:04 +00:00
parent 763b85b1b3
commit 489688f463

View File

@ -69,7 +69,7 @@ public abstract class EnchantmentYamlConfig {
}
try {
if (!outFile.exists() || false) {
if (!outFile.exists()) {
OutputStream out = new FileOutputStream(outFile);
byte[] buf = new byte[1024];
int len;