Skip to content

Commit

Permalink
tmp! simplify …_as_string calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Tilles committed May 20, 2016
1 parent d91f3ba commit c8a22e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clojurewerkz/elastisch/native/conversion.clj
Expand Up @@ -1088,9 +1088,9 @@
[^Range$Bucket b]
(merge-sub-aggregations
{:doc_count (.getDocCount b)
:from_as_string (String/valueOf ^{:tag "long"} (.. b getFrom longValue))
:from_as_string (.getFromAsString b)
:from (.. b getFrom longValue)
:to_as_string (String/valueOf ^{:tag "long"} (.. b getTo longValue))
:to_as_string (.getToAsString b)
:to (.. b getTo longValue)}
b))

Expand Down

0 comments on commit c8a22e6

Please sign in to comment.