Skip to content

Commit

Permalink
Remove UncaughtHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jun 11, 2017
1 parent 5f92c6b commit 3bc0b68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/moose/com/ac/AppApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ public class AppApplication extends Application {
private static DbHelper dbHelper;

private static RefWatcher refWatcher;
private final UncaughtHandler mUncaughtHandler = new UncaughtHandler();
//private final UncaughtHandler mUncaughtHandler = new UncaughtHandler();

@Override
public void onCreate() {
super.onCreate();
context = this;
Thread.setDefaultUncaughtExceptionHandler(mUncaughtHandler);
//Thread.setDefaultUncaughtExceptionHandler(mUncaughtHandler);
new PreferenceUtil(this);
dbHelper = new DbHelper(this);
if (!isInUnitTests()) {
Expand Down

0 comments on commit 3bc0b68

Please sign in to comment.