removed println

This commit is contained in:
Tony Tam 2012-09-12 06:37:09 -07:00
parent 5afd4b260a
commit f5a69a5a3b

View File

@ -32,7 +32,6 @@ object ApiExtractor {
for (api <- apis) yield {
val json = basePath.startsWith("http") match {
case true => {
println("api.path: " + api.path)
println("calling: " + ((basePath + api.path + apiKey.getOrElse("")).replaceAll(".\\{format\\}", ".json")))
Source.fromURL((basePath + api.path + apiKey.getOrElse("")).replaceAll(".\\{format\\}", ".json")).mkString
}