SteamWar/SpigotCore
Archiviert
13
0

Saving schematics in database #13

Geschlossen
Lixfel möchte 5 Commits von schematic nach master mergen
2 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
Nur Änderungen aus Commit a0c3a72524 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -32,11 +32,11 @@ class Schematic_12 {
return outputStream.toByteArray();
}
static void setPlayerClipboard(Player player, InputStream is) throws IOException, NoClipboardException {
static void setPlayerClipboard(Player player, InputStream is) throws IOException {
Schematic_8.setPlayerClipboard(player, is);
}
static Clipboard getClipboard(InputStream is) throws IOException, NoClipboardException {
static Clipboard getClipboard(InputStream is) throws IOException {
return Schematic_8.getClipboard(is);
}
}

Datei anzeigen

@ -36,7 +36,7 @@ class Schematic_8 {
return outputStream.toByteArray();
}
static void setPlayerClipboard(Player player, InputStream is) throws IOException, NoClipboardException {
static void setPlayerClipboard(Player player, InputStream is) throws IOException {
WorldData world = new BukkitWorld(player.getWorld()).getWorldData();
Clipboard clipboard = getClipboard(is);