Attempt to mimic clang-format

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad
2022-11-03 17:30:13 +00:00
parent 779bc2c63d
commit 5b9bfe8891
11 changed files with 529 additions and 157 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;