aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/selftails.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/selftails.scala')
-rw-r--r--tests/pending/pos/selftails.scala23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/pending/pos/selftails.scala b/tests/pending/pos/selftails.scala
deleted file mode 100644
index a4253b80c..000000000
--- a/tests/pending/pos/selftails.scala
+++ /dev/null
@@ -1,23 +0,0 @@
-package net.liftweb.util
-
-/**
-* This trait adds functionality to Scala standard types
-*/
-trait BasicTypesHelpers { self: StringHelpers with ControlHelpers =>
-
- /**
- * Compare two arrays of Byte for byte equality.
- * @return true if two Byte arrays contain the same bytes
- */
- def isEq(a: Array[Byte], b: Array[Byte]) = {
- def eq(a: Array[Byte], b: Array[Byte], pos: Int, len: Int): Boolean = {
- if (pos == len) true
- else if (a(pos) != b(pos)) false
- else eq(a , b, pos + 1, len)
- }
- a.length == b.length && eq(a, b, 0, a.length)
- }
-}
-
-trait StringHelpers
-trait ControlHelpers