Skip to content

Commit

Permalink
Make gradle nested getters public (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
TadCordle authored Jun 28, 2018
1 parent 369e30d commit a5c099e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,19 +189,19 @@ String getTargetImage() {

@Nested
@Optional
ImageConfiguration getFrom() {
public ImageConfiguration getFrom() {
return from;
}

@Nested
@Optional
ImageConfiguration getTo() {
public ImageConfiguration getTo() {
return to;
}

@Nested
@Optional
ContainerParameters getContainer() {
public ContainerParameters getContainer() {
return container;
}

Expand Down

0 comments on commit a5c099e

Please sign in to comment.