mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-11 16:36:58 -04:00
full downgrade to java 14, fixes #17
This commit is contained in:
parent
f172919cce
commit
eba0cf5d48
10
pom.xml
10
pom.xml
@ -41,7 +41,7 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<jvmTarget>16</jvmTarget>
|
<jvmTarget>14</jvmTarget>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
@ -73,8 +73,8 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>16</source>
|
<source>14</source>
|
||||||
<target>16</target>
|
<target>14</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
@ -194,8 +194,8 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<exec.mainClass>de.bixilon.minosoft.Minosoft</exec.mainClass>
|
<exec.mainClass>de.bixilon.minosoft.Minosoft</exec.mainClass>
|
||||||
<maven.compiler.source>16</maven.compiler.source>
|
<maven.compiler.source>14</maven.compiler.source>
|
||||||
<maven.compiler.target>16</maven.compiler.target>
|
<maven.compiler.target>14</maven.compiler.target>
|
||||||
<javafx.version>17-ea+11</javafx.version>
|
<javafx.version>17-ea+11</javafx.version>
|
||||||
<kotlin.version>1.5.10</kotlin.version>
|
<kotlin.version>1.5.10</kotlin.version>
|
||||||
<lwjgl.version>3.2.3</lwjgl.version>
|
<lwjgl.version>3.2.3</lwjgl.version>
|
||||||
|
@ -303,7 +303,7 @@ public final class Util {
|
|||||||
public static String mapToUrlQuery(Map<String, String> data) {
|
public static String mapToUrlQuery(Map<String, String> data) {
|
||||||
StringBuilder builder = new StringBuilder();
|
StringBuilder builder = new StringBuilder();
|
||||||
for (Map.Entry<String, String> entry : data.entrySet()) {
|
for (Map.Entry<String, String> entry : data.entrySet()) {
|
||||||
if (!builder.isEmpty()) {
|
if (builder.length() != 0) {
|
||||||
builder.append("&");
|
builder.append("&");
|
||||||
}
|
}
|
||||||
builder.append(URLEncoder.encode(entry.getKey(), StandardCharsets.UTF_8));
|
builder.append(URLEncoder.encode(entry.getKey(), StandardCharsets.UTF_8));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user