We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb0371 commit 1978cdaCopy full SHA for 1978cda
src/java_time/format.clj
@@ -1,8 +1,6 @@
1
(ns java-time.format
2
(:refer-clojure :exclude (format))
3
- (:require [clojure.string :as string]
4
- [java-time.core :as jt.c]
5
- [java-time.util :as jt.u])
+ (:require [java-time.util :as jt.u])
6
(:import [java.time.temporal TemporalAccessor]
7
[java.time.format DateTimeFormatter DateTimeFormatterBuilder ResolverStyle]
8
java.util.Locale))
src/java_time/graph.cljc
@@ -130,7 +130,7 @@
130
131
(defn- add-conversion [m ^Types src dst conversion]
132
(let [add #(update % (peek (.types src))
133
- (fnil conj (vector))
+ (fnil conj [])
134
(vector dst conversion))]
135
(if (> (.arity src) 1)
136
(update-in m (pop (.types src)) add)
0 commit comments