diff --git a/.travis.yml b/.travis.yml index d2126e0..67ebf01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,6 @@ language: scala script: "sbt coveralls" jdk: - oraclejdk7 +- openjdk7 scala: - 2.10.0 diff --git a/project/build.sbt b/project/build.sbt index d95511d..6162099 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -7,4 +7,4 @@ resolvers ++= Seq( addSbtPlugin("reaktor" %% "sbt-scct" % "0.2-SNAPSHOT") -addSbtPlugin("com.github.theon" %% "xsbt-coveralls-plugin" % "0.0.3") \ No newline at end of file +addSbtPlugin("com.github.theon" %% "xsbt-coveralls-plugin" % "0.0.4-SNAPSHOT") \ No newline at end of file diff --git a/src/main/scala/com/github/theon/uri/parsing/UriParser.scala b/src/main/scala/com/github/theon/uri/parsing/UriParser.scala index 206f1cb..845e763 100644 --- a/src/main/scala/com/github/theon/uri/parsing/UriParser.scala +++ b/src/main/scala/com/github/theon/uri/parsing/UriParser.scala @@ -79,7 +79,6 @@ object UriParser extends Parser { def parse(s: String, config: UriConfig) = { try { -// println(config.queryDecoder) val ruleTree = _uri(config) val parsingResult = ReportingParseRunner(ruleTree).run(s)