diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-02-19 20:08:34 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-02-19 20:08:34 -0800 |
commit | ff7e20cf6481cf4d0c302650e7434a1a918ea0e8 (patch) | |
tree | e5a9e14fa4ff0b422d32b77faf6444140887a532 /subsonic-android/src/github | |
parent | c30a37550b0732076935ffa658490b77efa65035 (diff) | |
download | dsub-ff7e20cf6481cf4d0c302650e7434a1a918ea0e8.tar.gz dsub-ff7e20cf6481cf4d0c302650e7434a1a918ea0e8.tar.bz2 dsub-ff7e20cf6481cf4d0c302650e7434a1a918ea0e8.zip |
Fix typo
Diffstat (limited to 'subsonic-android/src/github')
-rw-r--r-- | subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java b/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java index 133f2c26..4c3b256b 100644 --- a/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java +++ b/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java @@ -163,7 +163,7 @@ public class ImageLoader implements Runnable { try { TransitionDrawable tmp = (TransitionDrawable) existingDrawable; int layers = tmp.getNumberOfLayers(); - existingDrawable = tmp.getDrawable(layers - 1;) + existingDrawable = tmp.getDrawable(layers - 1); } catch(Exception e) { // Do nothing, just means that the drawable is a flat image } |