Skip to content

Commit

Permalink
Fix test failure after latest rewrite-templating changes (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek authored Dec 27, 2023
1 parent b621537 commit acfd000
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=17.0.8.1-tem
java=17.0.9-tem
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ void bar(String in, CharSequence cs) {
string = StringUtils.substringAfter(in, "|");
string = StringUtils.substring(in, 2, 4);
string = StringUtils.swapCase(in);
string = in == null ? "" : in;
string = in == null ? "" : in.trim();
string = in == null || in.trim().isEmpty() ? null : in.trim();
string = in == null ? null : in.trim();
string = in == null ? null : in.toUpperCase();
Expand Down

0 comments on commit acfd000

Please sign in to comment.