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

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zsakvo committed Dec 8, 2018
1 parent f8c77b2 commit d659015
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions app/src/main/java/cc/zsakvo/yueduhchelper/task/WriteFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ protected Boolean doInBackground(String... strings) {
}
catch(Exception e){
e.printStackTrace();
try {
makeFilePath(strings[1],"log");
FileOutputStream fos = new FileOutputStream(strings[1]);
fos.write(e.toString().getBytes());
fos.close();
} catch (IOException e1) {
e1.printStackTrace();
}
return false;
}
return true;
Expand Down

0 comments on commit d659015

Please sign in to comment.