summaryrefslogtreecommitdiff
path: root/test/files/scalacheck
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/scalacheck
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/scalacheck')
-rw-r--r--test/files/scalacheck/avl.scala4
1 files changed, 1 insertions, 3 deletions
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)