Skip to content

2021-November-27 - Prerelease - 2.6.473

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 27 Nov 05:53
a607934
Refactor getImage APIs to be var-arg (#9824)

Instead of having two APIs like:
getImage(String, String boolean) : Image
getImage(String, boolean) : Image

We replace this with two var-arg methods:
getImageOrThrow(String, [String...]) : Image
getImage(String, [String...]) : Optional<Image>