Skip to content

Commit 09a07f8

Browse files
committed
_
1 parent ff6ddc4 commit 09a07f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/main/clojure/plain/someactivity2.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
(defonce classifier-atom (atom nil))
3232

3333
(defn some-onResume [^plain.someactivity2.MyActivity this]
34-
(.superOnResume this bundle)
34+
(.superOnResume this)
3535
(.start @camera-view-atom))
3636

3737
(defn some-onPause [^plain.someactivity2.MyActivity this]
3838
(.stop @camera-view-atom)
39-
(.superOnPause this bundle))
39+
(.superOnPause this))
4040

4141
(defn some-onDestroy [^plain.someactivity2.MyActivity this]
42-
(.superOnDestroy this bundle)
42+
(.superOnDestroy this)
4343
;; executor.execute(new Runnable() {
4444
;; @Override
4545
;; public void run() {

0 commit comments

Comments
 (0)