Skip to content

Commit

Permalink
CLDR-17233 fix spotless error
Browse files Browse the repository at this point in the history
  • Loading branch information
pedberg-icu committed Nov 27, 2023
1 parent 3bfd2cd commit 4ccc242
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ public class DisplayAndInputProcessor {

// NNBSP among other spaces
private static final Pattern NNBSP_AND_OTHER_SPACES =
PatternCache.get("[\\u0020\\u00A0]+\\u202F[\\u0020\\u00A0\\u202F]*|\\u202F[\\u0020\\u00A0\\u202F]+");
PatternCache.get(
"[\\u0020\\u00A0]+\\u202F[\\u0020\\u00A0\\u202F]*|\\u202F[\\u0020\\u00A0\\u202F]+");
// NBSP among other spaces (after handling NNBSP among other spaces)
private static final Pattern NBSP_AND_SPACES =
PatternCache.get("\\u0020+\\u00A0[\\u0020\\u00A0]*|\\u00A0[\\u0020\\u00A0]+");
Expand Down

0 comments on commit 4ccc242

Please sign in to comment.