Skip to content

Commit

Permalink
Remove qualified library name
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiesardo committed Aug 19, 2014
1 parent c0beccb commit fde2962
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Map and Set structures that rememeber the insertion order of its elements, even

leiningen

[com.github.frankiesardo/linked "0.1.0"]
[linked "0.1.1"]

## Map

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.github.frankiesardo/linked "0.1.0"
(defproject linked "0.1.1"
:description "Efficient ordered map and set"
:url "http://github.com/frankiesardo/linked"
:license {:name "Eclipse Public License"
Expand Down
3 changes: 0 additions & 3 deletions src/linked/map.clj
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@

(defrecord Node [key value left right])

(defn- insert [{:keys [head-node tail-node delegate-map]} k v]
)

(deftype LinkedMap [head-node tail-node delegate-map]
IPersistentMap
(assoc [this k v]
Expand Down

0 comments on commit fde2962

Please sign in to comment.