Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
fix: replace hide api
Browse files Browse the repository at this point in the history
  • Loading branch information
weg2022 committed Aug 3, 2023
1 parent 1c7c090 commit 732d2fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public String get() {
@NonNull
@Override
public String get(int start, int end) {
return myBuilder.substring(start, end);
return myBuilder.subSequence(start, end).toString();
}

@Override
Expand Down

0 comments on commit 732d2fa

Please sign in to comment.