Skip to content

Commit

Permalink
LDEV-5115 - switch to DateTimeFormatter
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Oct 21, 2024
1 parent 460707d commit 231a687
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ public static String convertMask(String mask) {
while ((mask.indexOf("ttt")) != -1) {
mask = StringUtil.replace(mask, "ttt", "tt", false, true);
}
while ((mask.indexOf("TTT")) != -1) {
mask = StringUtil.replace(mask, "TTT", "TT", false, true);
}

char[] carr = mask.toCharArray();
StringBuilder sb = new StringBuilder();
Expand Down

0 comments on commit 231a687

Please sign in to comment.