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

Commit

Permalink
fix typo (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
marandaneto committed Feb 4, 2020
1 parent 9d33ed0 commit 416053c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -10,7 +10,7 @@ public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
districtMode();
strictMode();
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Expand All @@ -21,7 +21,7 @@ protected void onCreate(Bundle savedInstanceState) {
findViewById(R.id.native_capture).setOnClickListener(view -> NativeSample.message());
}

private void districtMode() {
private void strictMode() {
// https://developer.android.com/reference/android/os/StrictMode
// StrictMode is a developer tool which detects things you might be doing by accident and
// brings them to your attention so you can fix them.
Expand Down
Expand Up @@ -11,7 +11,7 @@ public class MyApplication extends Application {

@Override
public void onCreate() {
districtMode();
strictMode();
super.onCreate();

Timber.plant(new Timber.DebugTree());
Expand All @@ -28,7 +28,7 @@ public void onCreate() {
// });
}

private void districtMode() {
private void strictMode() {
// https://developer.android.com/reference/android/os/StrictMode
// StrictMode is a developer tool which detects things you might be doing by accident and
// brings them to your attention so you can fix them.
Expand Down

0 comments on commit 416053c

Please sign in to comment.