Skip to content

Commit

Permalink
Merge pull request #367 from HubSpot/fix-lazy-expression
Browse files Browse the repository at this point in the history
Return image when calling toString for LazyExpression.
  • Loading branch information
mattcoley authored Aug 27, 2019
2 parents 7449b87 + 07936ca commit 76cf41c
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@ public Object get() {
return supplier.get();
}

public String getImage() {
return image;
}

@Override
public String toString() {
return super.toString();
return image;
}
}

0 comments on commit 76cf41c

Please sign in to comment.