diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj index d35a3d0f..8e17f2bd 100644 --- a/src/clj/clojure/core.clj +++ b/src/clj/clojure/core.clj @@ -1655,7 +1655,7 @@ (map #(str ", " %) (rest valid-keys))))))) ;;multimethods -(def global-hierarchy) +(def ^:private global-hierarchy) (defmacro defmulti "Creates a new multimethod with the associated dispatch function. @@ -5309,7 +5309,7 @@ (defn- descriptor [^Class c] (clojure.asm.Type/getDescriptor c)) -(declare process-annotation) +(declare ^:private process-annotation) (defn- add-annotation [^clojure.asm.AnnotationVisitor av name v] (cond (vector? v) (let [avec (.visitArray av name)]