mirror of
https://github.com/sbt/sbt.git
synced 2026-09-02 02:57:21 +02:00
Fix formatting issues and bump to sbt 0.13.5
This commit is contained in:
@@ -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 }/>
|
||||
|
||||
Reference in New Issue
Block a user