Skip to content

Commit

Permalink
param name fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Dec 27, 2022
1 parent 5890e35 commit b394398
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/krlite/splasher/Splasher.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ Rect rotate(Node origin, double clockwiseDegree) {
}

public record Pusher(AtomicBoolean ready) {
Pusher(boolean reload) {
this(new AtomicBoolean(reload));
Pusher(boolean ready) {
this(new AtomicBoolean(ready));
}

public void let() {
Expand Down

0 comments on commit b394398

Please sign in to comment.