Skip to content

Commit

Permalink
Re-comment StrictMode that got accidentally uncommented in the previo…
Browse files Browse the repository at this point in the history
…us commit.
  • Loading branch information
murraycu committed Oct 12, 2014
1 parent 83492eb commit eac42c0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import android.content.Intent;
import android.os.Bundle;
//import android.os.StrictMode;
import android.os.StrictMode;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.NavUtils;
import android.text.TextUtils;
Expand All @@ -40,6 +39,7 @@ class BaseActivity extends FragmentActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

/*
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
.detectAll()
.penaltyLog()
Expand All @@ -50,6 +50,7 @@ protected void onCreate(Bundle savedInstanceState) {
.penaltyLog()
.penaltyDeath()
.build());
*/


//This lets us know what MIME Type to mention in the intent filter in the manifest file,
Expand Down

0 comments on commit eac42c0

Please sign in to comment.