Skip to content

Commit

Permalink
Renamed method in LimitedTextArea class
Browse files Browse the repository at this point in the history
The method getOutOfRange() in the LimitedTextArea class has been renamed to isOutOfRange(). The change was made to enhance the readability and clarity of the code, adhering to general Java naming conventions.
  • Loading branch information
dlemmermann committed May 8, 2024
1 parent 5bc127b commit 51d3a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemsfx/src/main/java/com/dlsc/gemsfx/LimitedTextArea.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public final void setTips(String tips) {

private final ReadOnlyBooleanWrapper outOfRange = new ReadOnlyBooleanWrapper(this, "isOverLimit", false);

public final boolean getOutOfRange() {
public final boolean isOutOfRange() {
return outOfRange.get();
}

Expand Down

0 comments on commit 51d3a89

Please sign in to comment.