Remove println in jsonDecode (#3665)

Following issue  #3578
This commit is contained in:
Matthew Tovbin 2018-09-07 15:47:26 -07:00 committed by Philip Hyunsu Cho
parent 4b43810f51
commit beab6e08dd

View File

@ -100,7 +100,6 @@ class TrackerConfParam(
override def jsonDecode(json: String): TrackerConf = {
implicit val formats = DefaultFormats
val parsedValue = parse(json)
println(parsedValue.children)
parsedValue.extract[TrackerConf]
}
}