diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-08-10 19:26:49 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-11 11:14:22 -0700 |
commit | 67fae6185dee31e5608f2df190bee8b096637f1c (patch) | |
tree | 6e7f62e7cd1a84b683ee040ff0408804c66b008d /android-mobile | |
parent | 5cdba2d652d8890a7557d5c101e32e7464c29536 (diff) | |
download | subsurface-67fae6185dee31e5608f2df190bee8b096637f1c.tar.gz |
Android: fix function signature in java code
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'android-mobile')
-rw-r--r-- | android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java b/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java index 881016285..66f5c1b0e 100644 --- a/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java +++ b/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java @@ -64,9 +64,8 @@ public class SubsurfaceMobileActivity extends QtActivity } } // onNewIntent - public void checkPendingIntents(String workingDir) { + public void checkPendingIntents() { isInitialized = true; - Log.i(TAG + " checkPendingIntents", workingDir); if (isIntentPending) { isIntentPending = false; Log.i(TAG + " checkPendingIntents", "checkPendingIntents: true"); |