More standard code formatting profile

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad
2022-11-03 18:39:34 +00:00
parent 5912ef3b45
commit 4abf3a20c6
10 changed files with 75 additions and 76 deletions

View File

@@ -38,10 +38,10 @@ package org.prismlauncher.utils;
public final class StringUtils {
private StringUtils() {}
private StringUtils() {
}
public static String[] splitStringPair(char splitChar, String input)
{
public static String[] splitStringPair(char splitChar, String input) {
int splitPoint = input.indexOf(splitChar);
if (splitPoint == -1)
return null;