Allow use of InputStream to load schematics

Conflicts:
	src/main/java/com/sk89q/worldedit/schematic/MCEditSchematicFormat.java
This commit is contained in:
sk89q 2014-05-01 13:57:30 -07:00
commit 65ee8bfd2a

View File

@ -45,9 +45,7 @@ public class MCEditSchematicFormat extends SchematicFormat {
super("MCEdit", "mcedit", "mce");
}
@Override
public CuboidClipboard load(File file) throws IOException, DataException {
FileInputStream stream = new FileInputStream(file);
public CuboidClipboard load(InputStream stream) throws IOException, DataException {
NBTInputStream nbtStream = new NBTInputStream(
new GZIPInputStream(stream));
@ -186,6 +184,11 @@ public class MCEditSchematicFormat extends SchematicFormat {
return clipboard;
}
@Override
public CuboidClipboard load(File file) throws IOException, DataException {
return load(new FileInputStream(file));
}
@Override
public void save(CuboidClipboard clipboard, File file) throws IOException, DataException {
int width = clipboard.getWidth();