Remove assetpacks

This commit is contained in:
MattBDev
2020-03-23 18:38:07 -04:00
parent 43dc1074b0
commit 221500e7db
4 changed files with 4 additions and 71 deletions

View File

@ -381,12 +381,6 @@ public class Settings extends Config {
" - Supports clipboard uploads, downloads and saves",
})
public String URL = "https://athion.net/fawe/";
@Comment({
"The web interface for assets",
" - All schematics are organized and public",
" - Assets can be searched, selected and downloaded",
})
public String ASSETS = "https://empcraft.com/assetpack/";
}
public static class EXTENT {

View File

@ -118,9 +118,9 @@ public abstract class FileConfiguration extends MemoryConfiguration {
throw new NullPointerException("File cannot be null");
}
FileInputStream stream = new FileInputStream(file);
load(new InputStreamReader(stream, StandardCharsets.UTF_8));
try (FileInputStream stream = new FileInputStream(file)) {
load(new InputStreamReader(stream, StandardCharsets.UTF_8));
}
}
/**

View File

@ -1,28 +0,0 @@
package com.boydti.fawe.object.clipboard;
import com.boydti.fawe.object.io.FastByteArrayOutputStream;
import java.util.function.BiFunction;
public class LinearClipboardBuilder {
FastByteArrayOutputStream blocksOut = new FastByteArrayOutputStream();
FastByteArrayOutputStream biomesOut = new FastByteArrayOutputStream();
public int width, height, length;
public void setWidth(int width) {
this.width = width;
}
public void setHeight(int height) {
this.height = height;
}
public void setLength(int length) {
this.length = length;
}
public LinearClipboard build() {
return null;
}
}