diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2023-05-16 22:43:38 -0600 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2023-05-16 22:43:38 -0600 |
commit | eb8709af1483696f4053bfea12f912201294826f (patch) | |
tree | 9e07d3ee245432bc3e52d60c61e509deb4e682f1 /app/src/main/kotlin/xyz | |
parent | 966571cac730139e43186ca29667b8fc127b27d3 (diff) | |
download | ServerCraft-eb8709af1483696f4053bfea12f912201294826f.tar ServerCraft-eb8709af1483696f4053bfea12f912201294826f.tar.gz ServerCraft-eb8709af1483696f4053bfea12f912201294826f.tar.bz2 |
bulk replace of package names to hopefully fix location error
Diffstat (limited to 'app/src/main/kotlin/xyz')
6 files changed, 9 insertions, 9 deletions
diff --git a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/App.kt b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/App.kt index 7aa5639..5b5ddac 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/App.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/App.kt @@ -1,7 +1,7 @@ /* * This Kotlin source file was generated by the Gradle 'init' task. */ -package xyz.brysonsteck.servercraft +package xyz.brysonsteck.ServerCraft import javafx.application.Application; import javafx.fxml.FXMLLoader; diff --git a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/Main.kt b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/Main.kt index e914e99..fbb61e4 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/Main.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/Main.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.servercraft +package xyz.brysonsteck.ServerCraft fun main() { App().run() diff --git a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt index a4bdb18..dcf77ba 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.servercraft.controllers +package xyz.brysonsteck.ServerCraft.controllers import javafx.fxml.FXML import javafx.application.Platform diff --git a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt index cad547d..99d1009 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.servercraft.controllers +package xyz.brysonsteck.ServerCraft.controllers import kotlinx.coroutines.* import kotlinx.coroutines.javafx.JavaFx @@ -52,9 +52,9 @@ import javafx.stage.Stage import javafx.event.EventHandler import org.rauschig.jarchivelib.* -import xyz.brysonsteck.servercraft.server.Server -import xyz.brysonsteck.servercraft.server.Download -import xyz.brysonsteck.servercraft.App +import xyz.brysonsteck.ServerCraft.server.Server +import xyz.brysonsteck.ServerCraft.server.Download +import xyz.brysonsteck.ServerCraft.App class PrimaryController { @FXML diff --git a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt index a10ff69..757c32c 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.servercraft.server +package xyz.brysonsteck.ServerCraft.server import java.io.*; import java.net.*; diff --git a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Server.kt b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Server.kt index 38e79a1..746bc55 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Server.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Server.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.servercraft.server +package xyz.brysonsteck.ServerCraft.server import java.io.File import java.util.Properties |