- remove redundant space definition

This commit is contained in:
zTrap 2017-10-26 10:06:44 +03:00
parent 651a08696a
commit 35a41818a5

View File

@ -155,7 +155,7 @@ public class AsyncDrawableLoader implements AsyncDrawable.Loader {
if (result != null) {
final Drawable out;
if (height != -1 && width != -1) {
out = AsyncDrawableLoader.this.resize(result, height, width);
out = resize(result, height, width);
} else {
out = result;
}