We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a small error in the 'getLargerSizeKeys' method in the Flickr sample. It always returns an empty List.
List<String> result = new ArrayList<>(); int size = result.size(); for (int i = 0; i < size; i++) { // [...] }
It should most probably be:
List<String> result = new ArrayList<>(); int size = SORTED_SIZE_KEYS.size(); for (int i = 0; i < size; i++) { // [...] }
The line in question can be found here:
glide/samples/flickr/src/main/java/com/bumptech/glide/samples/flickr/api/Api.java
Line 72 in fb672a5
I'll gladly create a pull request if preferred.
The text was updated successfully, but these errors were encountered:
Thanks for the report, please do send a pull request.
Sorry, something went wrong.
78ecfd2
Successfully merging a pull request may close this issue.
There is a small error in the 'getLargerSizeKeys' method in the Flickr sample. It always returns an empty List.
It should most probably be:
The line in question can be found here:
glide/samples/flickr/src/main/java/com/bumptech/glide/samples/flickr/api/Api.java
Line 72 in fb672a5
I'll gladly create a pull request if preferred.
The text was updated successfully, but these errors were encountered: