File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
test/clojure/test_clojure Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 49154915 :static true }
49164916 [^Class c]
49174917 (when c
4918- (let [i (.getInterfaces c)
4918+ (let [i (seq ( .getInterfaces c) )
49194919 s (.getSuperclass c)]
4920- (not-empty
4921- (if s (cons s i) i)))))
4920+ (if s (cons s i) i))))
49224921
49234922(defn supers
49244923 " Returns the immediate and indirect superclasses and interfaces of c, if any"
Original file line number Diff line number Diff line change 153153 (are [x y] (= x y)
154154 (bases java.lang.Math)
155155 (list java.lang.Object)
156+ (bases java.util.Collection)
157+ (list java.lang.Iterable)
158+ (bases java.lang.Object)
159+ nil
160+ (bases java.lang.Comparable)
161+ nil
156162 (bases java.lang.Integer)
157163 (list java.lang.Number java.lang.Comparable) ))
158164
You can’t perform that action at this time.
0 commit comments