diff options
Diffstat (limited to 'src/clojure/io/cons/carddav_sync/authentication_service.clj')
-rw-r--r-- | src/clojure/io/cons/carddav_sync/authentication_service.clj | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/clojure/io/cons/carddav_sync/authentication_service.clj b/src/clojure/io/cons/carddav_sync/authentication_service.clj index f339457..7b3ddf3 100644 --- a/src/clojure/io/cons/carddav_sync/authentication_service.clj +++ b/src/clojure/io/cons/carddav_sync/authentication_service.clj @@ -1,6 +1,6 @@ (ns io.cons.carddav_sync.authentication_service (:use io.cons.carddav_sync.log) - (:require io.cons.carddav_sync.authenticator) + (:import io.cons.carddav_sync.authenticator) (:gen-class :extends android.app.Service :exposes-methods {onCreate superOnCreate @@ -16,9 +16,7 @@ [this] (.superOnCreate this) (log-i "Authentication Service created") - (swap! (.state this) - #(when-not % - (io.cons.carddav_sync.authenticator. this)))) + (swap! (.state this) #(when-not % (authenticator. this)))) (defn -onDestroy [this] |