From 46dedb822f894288cb63998dbdfc600a10cbc2c3 Mon Sep 17 00:00:00 2001
From: sirjonasxx <36828922+sirjonasxx@users.noreply.github.com>
Date: Sat, 13 Oct 2018 23:43:13 +0200
Subject: [PATCH] update info
---
G-Earth-UI/src/main/java/gearth/ui/info/Info.java | 7 ++++---
pom.xml | 4 ++--
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/G-Earth-UI/src/main/java/gearth/ui/info/Info.java b/G-Earth-UI/src/main/java/gearth/ui/info/Info.java
index c3f491f..21eaac4 100644
--- a/G-Earth-UI/src/main/java/gearth/ui/info/Info.java
+++ b/G-Earth-UI/src/main/java/gearth/ui/info/Info.java
@@ -21,6 +21,7 @@ public class Info extends SubForm {
"",
"Contributors:",
"XePeleato (Windows & Mac support)",
+ "Scott Stamp",
"LittleJ",
"ArachisH",
"",
@@ -29,14 +30,14 @@ public class Info extends SubForm {
"darkbox.nl"
};
- String all = lines[0];
+ StringBuilder all = new StringBuilder(lines[0]);
for (int i = 1; i < lines.length; i++) {
- all += (System.lineSeparator() + lines[i]);
+ all.append(System.lineSeparator()).append(lines[i]);
}
text.setText(
- all
+ all.toString()
);
}
}
diff --git a/pom.xml b/pom.xml
index ff1cce7..286d99c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
G-Earth
G-Earth-Parent
pom
- 0.0.1-beta
+ 0.1.2-beta
1.8
@@ -16,7 +16,7 @@
G-Earth
https://github.com/sirjonasxx/G-Earth
-
+ Cross Platform Habbo packetlogger/manipulator
G-Earth-UI