Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Clojure 1.9 warnings #233

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/eastwood/copieddeps/dep1/clojure/tools/analyzer.clj
Expand Up @@ -21,7 +21,7 @@
Setting up the global env is also required, see eastwood.copieddeps.dep1.clojure.tools.analyzer.env

See clojure.tools.analyzer.core-test for an example on how to setup the analyzer."
(:refer-clojure :exclude [macroexpand-1 macroexpand var? record?])
(:refer-clojure :exclude [macroexpand-1 macroexpand var? record? boolean?])
(:require [eastwood.copieddeps.dep1.clojure.tools.analyzer.utils :refer :all]
[eastwood.copieddeps.dep1.clojure.tools.analyzer.env :as env])
(:import (clojure.lang Symbol IPersistentVector IPersistentMap IPersistentSet ISeq IType IRecord)))
Expand Down
Expand Up @@ -7,7 +7,7 @@
;; You must not remove this notice, or any other, from this software.

(ns eastwood.copieddeps.dep1.clojure.tools.analyzer.utils
(:refer-clojure :exclude [record?])
(:refer-clojure :exclude [record? boolean?])
(:require [eastwood.copieddeps.dep1.clojure.tools.analyzer.env :as env])
(:import (clojure.lang IRecord IType IObj
IReference Var)))
Expand Down
1 change: 1 addition & 0 deletions src/eastwood/util.clj
@@ -1,4 +1,5 @@
(ns eastwood.util
(:refer-clojure :exclude [uri?])
(:import [java.io StringReader]
[java.net URI]
[clojure.lang LineNumberingPushbackReader])
Expand Down