Skip to content
This repository has been archived by the owner on Aug 3, 2018. It is now read-only.

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
purerosefallen authored Jun 12, 2018
1 parent a76f1ee commit 4c3b9cd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ public void bindImage(ImageView imageview, long code, Drawable pre, boolean isBi
for (String ex : Constants.IMAGE_EX) {
File file = new File(AppsSettings.get().getResourcePath(), name + ex);
File file_ex = new File(AppsSettings.get().getResourcePath(), name_ex + ex);
if (file_ex.exists()) {
if (file_ex.exists()) {
bind(file_ex, imageview, Constants.BPG.equals(ex), code, pre, isBig);
bind = true;
return;
} else
} else
if (file.exists()) {
bind(file, imageview, Constants.BPG.equals(ex), code, pre, isBig);
bind = true;
Expand Down

0 comments on commit 4c3b9cd

Please sign in to comment.