From 05fb3de39b40c22dda902b25705b2272df30e7e9 Mon Sep 17 00:00:00 2001 From: David Barksdale Date: Sun, 1 Sep 2013 12:45:45 -0500 Subject: Use :require in this case. --- src/clojure/io/cons/carddav_sync/authentication_service.clj | 6 ++---- src/clojure/io/cons/carddav_sync/sync_service.clj | 6 ++---- 2 files changed, 4 insertions(+), 8 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] diff --git a/src/clojure/io/cons/carddav_sync/sync_service.clj b/src/clojure/io/cons/carddav_sync/sync_service.clj index e069f86..bcfd881 100644 --- a/src/clojure/io/cons/carddav_sync/sync_service.clj +++ b/src/clojure/io/cons/carddav_sync/sync_service.clj @@ -1,6 +1,6 @@ (ns io.cons.carddav_sync.sync_service (:use io.cons.carddav_sync.log) - (:require io.cons.carddav_sync.sync_adapter) + (:import io.cons.carddav_sync.sync_adapter) (:gen-class :extends android.app.Service :exposes-methods {onCreate superOnCreate @@ -17,9 +17,7 @@ (.superOnCreate this) (log-i "Service created") (swap! (.state this) - #(when-not % - (io.cons.carddav_sync.sync_adapter. - (.getApplicationContext this) true)))) + #(when-not % (sync_adapter. (.getApplicationContext this) true)))) (defn -onDestroy [this] -- cgit v1.2.3-18-g5258