Skip to content

Commit

Permalink
Remove spurious debug code, bump to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benjumanji committed Feb 18, 2015
1 parent 75536e5 commit c423f3d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ To add to your sbt project:

```
resolvers += "benjumanji" at "http://dl.bintray.com/benjumanji/maven"
libraryDependencies += "io.artfuldodge" %% "util-stats-dropwizard" % "0.3"
libraryDependencies += "io.artfuldodge" %% "util-stats-dropwizard" % "0.3.1"
```
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "io.artfuldodge"

name := "util-stats-dropwizard"

version := "0.3"
version := "0.3.1"

description := "A stats reciever backed by a dropwizard metrics registry"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ class MetricsStatsReceiver(metrics: MetricRegistry) extends StatsReceiverWithCum

protected[this] def registerGauge(names: Seq[String], f: => Float) {
val dotted: String = toDotted(names)
println(s"adding gauge with name $dotted")

metrics.register(dotted, new MetricsGauge[Float] {
def getValue(): Float = f
Expand Down

0 comments on commit c423f3d

Please sign in to comment.