summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2013-05-12 23:37:54 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2013-05-16 18:14:44 +0200
commitae43506bc635f364a5d9a70969d23933160fa7a1 (patch)
tree021b948e7e70b03eb879f24194fd3add1b535abf /test/files
parentea681ec7cca6606f9a48b6bc90a88f04d135b1e4 (diff)
downloadscala-ae43506bc635f364a5d9a70969d23933160fa7a1.tar.gz
scala-ae43506bc635f364a5d9a70969d23933160fa7a1.tar.bz2
scala-ae43506bc635f364a5d9a70969d23933160fa7a1.zip
SI-7469 Remove @deprecated scala.util.logging
Diffstat (limited to 'test/files')
-rw-r--r--test/files/jvm/xml01.scala1
-rw-r--r--test/files/pos/t1648.scala4
-rw-r--r--test/files/scalacheck/avl.scala4
3 files changed, 1 insertions, 8 deletions
diff --git a/test/files/jvm/xml01.scala b/test/files/jvm/xml01.scala
index 2fab650637..75777a5b94 100644
--- a/test/files/jvm/xml01.scala
+++ b/test/files/jvm/xml01.scala
@@ -1,7 +1,6 @@
import java.io.StringReader
import org.xml.sax.InputSource
-import scala.util.logging._
import scala.xml._
object Test extends App {
diff --git a/test/files/pos/t1648.scala b/test/files/pos/t1648.scala
deleted file mode 100644
index 6d53ce11ee..0000000000
--- a/test/files/pos/t1648.scala
+++ /dev/null
@@ -1,4 +0,0 @@
-object Test {
- class MyClass extends scala.util.logging.Logged { }
- val x = new MyClass with scala.util.logging.ConsoleLogger
-}
diff --git a/test/files/scalacheck/avl.scala b/test/files/scalacheck/avl.scala
index af79ad49e3..02003bd271 100644
--- a/test/files/scalacheck/avl.scala
+++ b/test/files/scalacheck/avl.scala
@@ -2,14 +2,12 @@ import org.scalacheck.Gen
import org.scalacheck.Prop.forAll
import org.scalacheck.Properties
-import util.logging.ConsoleLogger
-
package scala.collection.mutable {
/**
* Property of an AVL Tree : Any node of the tree has a balance value beetween in [-1; 1]
*/
- abstract class AVLTreeTest(name: String) extends Properties(name) with ConsoleLogger {
+ abstract class AVLTreeTest(name: String) extends Properties(name) {
def `2^`(n: Int) = (1 to n).fold(1)((a, b) => b*2)