Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Jan 20, 2024
1 parent 910039c commit c21622e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,9 @@ public void getCompositionStatus(BitSet leading, BitSet trailing, BitSet resulti
}

public boolean isTrailing(int cp) {
if (!composition) { return false; }
if (!composition) {
return false;
}
var buffer = new StringBuffer();
data.getRecursiveDecomposition(cp, buffer, compatibility);
return data.isTrailing(buffer.codePointAt(0));
Expand Down

0 comments on commit c21622e

Please sign in to comment.