Fix formatting issues and bump to sbt 0.13.5

This commit is contained in:
Josh Suereth
2014-05-28 09:12:55 -04:00
parent 89091ca4fc
commit 4c2d88649e
13 changed files with 58 additions and 58 deletions
@@ -4,7 +4,7 @@ import java.io.{ StringWriter, PrintWriter, File }
import java.net.InetAddress
import scala.collection.mutable.ListBuffer
import scala.util.DynamicVariable
import scala.xml.{Elem, Node=>XNode, XML}
import scala.xml.{ Elem, Node => XNode, XML }
import testing.{ Event => TEvent, Status => TStatus, OptionalThrowable, TestSelector }
/**
@@ -23,7 +23,7 @@ class JUnitXmlTestsListener(val outputDir: String) extends TestsListener {
<properties>
{
val iter = System.getProperties.entrySet.iterator
val props:ListBuffer[XNode] = new ListBuffer()
val props: ListBuffer[XNode] = new ListBuffer()
while (iter.hasNext) {
val next = iter.next
props += <property name={ next.getKey.toString } value={ next.getValue.toString }/>