summaryrefslogtreecommitdiff
path: root/test/files/jvm/annotations.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2009-09-30 07:27:39 +0000
committerLukas Rytz <lukas.rytz@epfl.ch>2009-09-30 07:27:39 +0000
commitc590eb86c61196b31b4a6f41fb25e92103d05cd9 (patch)
treea1b9ad0adbeabb1ba0aba1e430b66632fe9964ea /test/files/jvm/annotations.scala
parent8f17ff94fadf8431b7f431a74b69dc5dc291de52 (diff)
downloadscala-c590eb86c61196b31b4a6f41fb25e92103d05cd9.tar.gz
scala-c590eb86c61196b31b4a6f41fb25e92103d05cd9.tar.bz2
scala-c590eb86c61196b31b4a6f41fb25e92103d05cd9.zip
fix windows / ibm nightly
Diffstat (limited to 'test/files/jvm/annotations.scala')
-rw-r--r--test/files/jvm/annotations.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/jvm/annotations.scala b/test/files/jvm/annotations.scala
index 902ea87a90..227bd919c1 100644
--- a/test/files/jvm/annotations.scala
+++ b/test/files/jvm/annotations.scala
@@ -130,8 +130,8 @@ object Test4 {
classOf[Foo7].getDeclaredConstructors foreach printSourceAnnotations
classOf[Foo8].getDeclaredFields foreach printSourceAnnotations
classOf[Foo8].getDeclaredMethods foreach printSourceAnnotations
- classOf[Foo9].getDeclaredFields foreach printSourceAnnotations
- classOf[Foo9].getDeclaredMethods foreach printSourceAnnotations
+ classOf[Foo9].getDeclaredFields.sortWith((x, y) => x.toString < y.toString) foreach printSourceAnnotations
+ classOf[Foo9].getDeclaredMethods.sortWith((x, y) => x.toString < y.toString) foreach printSourceAnnotations
}
}