Skip to content

Commit

Permalink
Rename parameter to match field (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo authored Nov 12, 2024
1 parent 4dda2e0 commit 7c8c244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions impl/src/main/java/org/eclipse/parsson/JsonParserImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -384,8 +384,8 @@ private static final class Stack {
final int limit;
private Context head;

Stack(int size) {
this.limit = size;
Stack(int limit) {
this.limit = limit;
}

private void push(Context context) {
Expand Down

0 comments on commit 7c8c244

Please sign in to comment.