SteamWar/SpigotCore
Archiviert
13
0

commonDB #211

Zusammengeführt
Lixfel hat 15 Commits von commonDB nach master 2022-11-22 11:36:14 +01:00 zusammengeführt
10 geänderte Dateien mit 17 neuen und 17 gelöschten Zeilen
Nur Änderungen aus Commit 64dc2089c3 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -43,7 +43,7 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
compileOnly project(":SpigotCore_Main")
compileOnly swdep("Spigot-1.10")
}

Datei anzeigen

@ -43,7 +43,7 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
compileOnly project(":SpigotCore_Main")
compileOnly swdep("Spigot-1.12")
}

Datei anzeigen

@ -43,8 +43,8 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
implementation project(':CommonCore')
compileOnly project(":SpigotCore_Main")
Lixfel markierte diese Unterhaltung als gelöst Veraltet
Veraltet
Review

s.u., hier aber von mir nicht ganz korrekt gemacht.

s.u., hier aber von mir nicht ganz korrekt gemacht.
compileOnly project(':CommonCore')
Lixfel markierte diese Unterhaltung als gelöst Veraltet
Veraltet
Review

Nutze lieber bis auf an einer Stelle (In Main oder so) 'compileOnly' statt 'implementation'

Nutze lieber bis auf an einer Stelle (In Main oder so) 'compileOnly' statt 'implementation'
compileOnly project(":SpigotCore_8")
compileOnly project(":SpigotCore_9")

Datei anzeigen

@ -43,7 +43,7 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
compileOnly project(":SpigotCore_Main")
compileOnly swdep("Spigot-1.15")
}

Datei anzeigen

@ -43,9 +43,9 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
implementation project(":SpigotCore_14")
implementation project(':CommonCore')
compileOnly project(":SpigotCore_Main")
compileOnly project(":SpigotCore_14")
compileOnly project(':CommonCore')
compileOnly swdep("WorldEdit-1.15")

Datei anzeigen

@ -43,8 +43,8 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
implementation project(":SpigotCore_14")
compileOnly project(":SpigotCore_Main")
compileOnly project(":SpigotCore_14")
compileOnly project(":SpigotCore_18")
compileOnly swdep("WorldEdit-1.15")

Datei anzeigen

@ -43,8 +43,8 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
implementation project(':CommonCore')
compileOnly project(":SpigotCore_Main")
compileOnly project(':CommonCore')
compileOnly swdep("Spigot-1.8")
compileOnly swdep("WorldEdit-1.12")

Datei anzeigen

@ -43,7 +43,7 @@ sourceSets {
}
dependencies {
implementation project(":SpigotCore_Main")
compileOnly project(":SpigotCore_Main")
compileOnly project(":SpigotCore_8")
compileOnly swdep("Spigot-1.9")

Datei anzeigen

@ -64,7 +64,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.hamcrest:hamcrest:2.2'
implementation project(':CommonCore')
compileOnly project(':CommonCore')
}
processResources {

Datei anzeigen

@ -84,15 +84,15 @@ public class SchematicData {
}
public void saveFromPlayer(Player player, boolean newFormat) throws IOException, NoClipboardException {
updateDatabase(WorldEditWrapper.impl.getPlayerClipboard(player, newFormat), newFormat);
saveFromStream(WorldEditWrapper.impl.getPlayerClipboard(player, newFormat), newFormat);
}
@Deprecated
public void saveFromBytes(byte[] bytes, boolean newFormat) {
updateDatabase(new ByteArrayInputStream(bytes), newFormat);
saveFromStream(new ByteArrayInputStream(bytes), newFormat);
}
private void updateDatabase(InputStream blob, boolean newFormat) {
public void saveFromStream(InputStream blob, boolean newFormat) {
updateDatabase.update(blob, newFormat, node.getId());
node.setNodeFormat(newFormat);
}