aboutsummaryrefslogtreecommitdiff
path: root/modules/command-line
diff options
context:
space:
mode:
Diffstat (limited to 'modules/command-line')
-rw-r--r--modules/command-line/pom.xml5
-rw-r--r--modules/command-line/src/main/clojure/clojure/contrib/command_line.clj2
2 files changed, 1 insertions, 6 deletions
diff --git a/modules/command-line/pom.xml b/modules/command-line/pom.xml
index 8e2e01c9..224311a8 100644
--- a/modules/command-line/pom.xml
+++ b/modules/command-line/pom.xml
@@ -12,10 +12,5 @@
</parent>
<artifactId>command-line</artifactId>
<dependencies>
- <dependency>
- <groupId>org.clojure.contrib</groupId>
- <artifactId>string</artifactId>
- <version>1.3.0-SNAPSHOT</version>
- </dependency>
</dependencies>
</project> \ No newline at end of file
diff --git a/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj b/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj
index 47ee7849..6399c4fc 100644
--- a/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj
+++ b/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj
@@ -12,7 +12,7 @@
^{:author "Chris Houser",
:doc "Process command-line arguments according to a given cmdspec"}
clojure.contrib.command-line
- (:use (clojure.contrib [string :only (join)])))
+ (:use (clojure [string :only (join)])))
(defn make-map [args cmdspec]
(let [{spec true [rest-sym] false} (group-by vector? cmdspec)