Skip to content

Commit 729416f

Browse files
authored
Fix typo in the load flag getter/setters (#701)
Fix typo in the load flag getter/setters
1 parent 2fe9ee8 commit 729416f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/groovy/com/palantir/gradle/docker/DockerExtension.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,11 @@ class DockerExtension {
182182
}
183183

184184
public boolean getLoad() {
185-
return pull
185+
return load
186186
}
187187

188-
public void load(boolean pull) {
189-
this.pull = pull
188+
public void load(boolean load) {
189+
this.load = load
190190
}
191191

192192
public boolean getPush() {

0 commit comments

Comments
 (0)