Skip to content

Commit

Permalink
Rename variable this shadows type fn
Browse files Browse the repository at this point in the history
Attempt at avoiding the exception reported here: BrunoBonacci#67 (comment)
  • Loading branch information
piotr-yuxuan committed May 29, 2021
1 parent f89576b commit 038bf79
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(deftype PrometheusPublisher
[config buffer registry transform push-ts]
[config buffer prom-registry transform push-ts]

com.brunobonacci.mulog.publisher.PPublisher
(agent-buffer [_]
Expand All @@ -223,13 +223,13 @@

com.brunobonacci.mulog.publishers.prometheus.ReadRegistry
(registry [_]
(registry registry))
(registry prom-registry))

(write-out [_ out]
(write-out registry out))
(write-out prom-registry out))

(write-str [_]
(write-str registry))
(write-str prom-registry))

java.io.Closeable
(close [_]))
Expand Down

0 comments on commit 038bf79

Please sign in to comment.