summaryrefslogtreecommitdiff
path: root/test/files/jvm/deprecation
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-05-19 20:05:44 +0000
committerPaul Phillips <paulp@improving.org>2011-05-19 20:05:44 +0000
commit7595671ec3929aa4ac978826521300a900250214 (patch)
treec9ca84eaa6eae78ebde292b10106a22998c75183 /test/files/jvm/deprecation
parentccceeeb179c4d60155b6c5c9a96c8497ce25398f (diff)
downloadscala-7595671ec3929aa4ac978826521300a900250214.tar.gz
scala-7595671ec3929aa4ac978826521300a900250214.tar.bz2
scala-7595671ec3929aa4ac978826521300a900250214.zip
Suppress unwanted noise generated by javac when...
Suppress unwanted noise generated by javac when compiling test case for #1263. formerly the test case caused this to be printed: Note: test/files/pos/t1263/Test.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. we suppress this using @SuppressWarnings. Contributed by Seth Tisue, no review.
Diffstat (limited to 'test/files/jvm/deprecation')
-rw-r--r--test/files/jvm/deprecation/Test_1.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/jvm/deprecation/Test_1.scala b/test/files/jvm/deprecation/Test_1.scala
index 92173f94e2..0a5b607037 100644
--- a/test/files/jvm/deprecation/Test_1.scala
+++ b/test/files/jvm/deprecation/Test_1.scala
@@ -8,9 +8,9 @@ class Test {
val w = i.buz()
}
- @deprecated("no longer!") class Inner {
- @deprecated("uncool") def f: Int = 1
- @deprecated("this one as well!") var g = -1
+ @deprecated("no longer!", "") class Inner {
+ @deprecated("uncool", "") def f: Int = 1
+ @deprecated("this one as well!", "") var g = -1
}
}