Skip to content
Snippets Groups Projects
Commit 49ee410a authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Revert "Translated String strip to trim for java 8 compatibility"

This reverts commit 6a134982.
parent 3cfbd5b1
No related branches found
No related tags found
No related merge requests found
13399
\ No newline at end of file
13397
\ No newline at end of file
......@@ -139,8 +139,8 @@ public class AvatarExpressionSolver {
operator = expression.charAt(index);
//split and recur
String leftExpression = expression.substring(0, index).trim();
String rightExpression = expression.substring(index + 1, expression.length()).trim();
String leftExpression = expression.substring(0, index).strip();
String rightExpression = expression.substring(index + 1, expression.length()).strip();
left = new AvatarExpressionSolver(leftExpression);
right = new AvatarExpressionSolver(rightExpression);
......@@ -200,8 +200,8 @@ public class AvatarExpressionSolver {
operator = expression.charAt(index);
//split and recur
String leftExpression = expression.substring(0, index).trim();
String rightExpression = expression.substring(index + 1, expression.length()).trim();
String leftExpression = expression.substring(0, index).strip();
String rightExpression = expression.substring(index + 1, expression.length()).strip();
left = new AvatarExpressionSolver(leftExpression);
right = new AvatarExpressionSolver(rightExpression);
......@@ -268,8 +268,8 @@ public class AvatarExpressionSolver {
operator = expression.charAt(index);
//split and recur
String leftExpression = expression.substring(0, index).trim();
String rightExpression = expression.substring(index + 1, expression.length()).trim();
String leftExpression = expression.substring(0, index).strip();
String rightExpression = expression.substring(index + 1, expression.length()).strip();
left = new AvatarExpressionSolver(leftExpression);
right = new AvatarExpressionSolver(rightExpression);
......
......@@ -50,8 +50,8 @@ package ui.util;
*/
public class DefaultText {
public static String BUILD = "13398";
public static String DATE = "2020/05/13 11:41:10 CET";
public static String BUILD = "13396";
public static String DATE = "2020/05/13 03:11:56 CET";
public static StringBuffer sbAbout = makeAbout();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment