Skip to content

Commit

Permalink
Fix typo in the load flag getter/setters (#701)
Browse files Browse the repository at this point in the history
Fix typo in the load flag getter/setters
  • Loading branch information
shacker27 committed Mar 2, 2024
1 parent 2fe9ee8 commit 729416f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,11 @@ class DockerExtension {
}

public boolean getLoad() {
return pull
return load
}

public void load(boolean pull) {
this.pull = pull
public void load(boolean load) {
this.load = load
}

public boolean getPush() {
Expand Down

0 comments on commit 729416f

Please sign in to comment.