Skip to content

Commit

Permalink
Catch an Exception. Fix possible crash ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
niranjan94 committed Aug 31, 2015
1 parent e8eaa82 commit 3e8a812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/njlabs/showjava/ui/Landing.java
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ private void cleanOldSources() {
try {
FileUtils.cleanDirectory(file);
file.delete();
} catch (IOException e) {
} catch (Exception e) {
Ln.d(e);
}
}
Expand Down

0 comments on commit 3e8a812

Please sign in to comment.