Skip to content

Commit 4b8917d

Browse files
committed
Fixes incorrect super call in Android service example
1 parent 85bd97c commit 4b8917d

File tree

1 file changed

+1
-1
lines changed
  • de.vogella.android.ownservice.local/src/de/vogella/android/ownservice/local

1 file changed

+1
-1
lines changed

de.vogella.android.ownservice.local/src/de/vogella/android/ownservice/local/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public void onCreate(Bundle savedInstanceState) {
3232

3333
@Override
3434
protected void onResume() {
35-
super.onPause();
35+
super.onResume();
3636
bindService(new Intent(this, LocalWordService.class), mConnection,
3737
Context.BIND_AUTO_CREATE);
3838
}

0 commit comments

Comments
 (0)