Skip to content

Commit

Permalink
Fixed warnings using Clojure 1.2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Byrne authored and Dave Byrne committed Apr 2, 2011
1 parent 70f3b54 commit e73433e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions project.clj
@@ -1,6 +1,6 @@
(defproject clj-sandbox "0.4.2-SNAPSHOT"
(defproject clj-sandbox "0.4.3-SNAPSHOT"
:description "Clojure library for sandboxed execution"
:dependencies [[org.clojure/clojure "1.1.0"]
[org.clojure/clojure-contrib "1.1.0"]]
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]]
:dev-dependencies [[lein-clojars "0.5.0"]
[swank-clojure "1.2.1"]])
3 changes: 1 addition & 2 deletions src/net/licenser/sandbox.clj
@@ -1,7 +1,6 @@
(ns net.licenser.sandbox
(:use [clojure.contrib.def :only [defnk]]
(net.licenser.sandbox matcher safe-fns tester jvm)
[clojure.contrib.seq-utils :only [flatten]])
(net.licenser.sandbox matcher safe-fns tester jvm))
(:import [java.util.concurrent FutureTask TimeUnit TimeoutException ExecutionException]))

(def
Expand Down
3 changes: 1 addition & 2 deletions src/net/licenser/sandbox/tester.clj
@@ -1,6 +1,5 @@
(ns net.licenser.sandbox.tester
(:use [net.licenser.sandbox matcher safe-fns]
[clojure.contrib.seq-utils :only [flatten]])
(:use [net.licenser.sandbox matcher safe-fns])
(:require [clojure.set :as set]))

(defn s-seq
Expand Down

0 comments on commit e73433e

Please sign in to comment.