Skip to content

Commit

Permalink
Merge pull request lancepantz#1 from arohner/master
Browse files Browse the repository at this point in the history
clojure 1.3 compatibility
  • Loading branch information
lancepantz committed Sep 20, 2011
2 parents c7ad240 + fc59d5c commit a91745d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion project.clj
Expand Up @@ -3,5 +3,4 @@
:url "http://github.com/lancepantz/clj-yaml"
:dependencies
[[org.clojure/clojure "1.2.0-RC3"]
[org.clojure/clojure-contrib "1.2.0-RC3"]
[org.yaml/snakeyaml "1.5"]])
5 changes: 2 additions & 3 deletions src/clj_yaml/core.clj
@@ -1,8 +1,7 @@
(ns clj-yaml.core
(:import (org.yaml.snakeyaml Yaml))
(:use (clojure.contrib [def :only (defvar-)])))
(:import (org.yaml.snakeyaml Yaml)))

(defvar- yaml (Yaml.))
(def ^{:private true} yaml (Yaml.))

(defn- stringify [data]
(cond
Expand Down

0 comments on commit a91745d

Please sign in to comment.