From 7595671ec3929aa4ac978826521300a900250214 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Thu, 19 May 2011 20:05:44 +0000 Subject: 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. --- test/files/jvm/deprecation.cmds | 3 --- test/files/jvm/deprecation/Test_1.scala | 6 +++--- test/files/pos/t1263/Test.java | 1 + 3 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 test/files/jvm/deprecation.cmds (limited to 'test') diff --git a/test/files/jvm/deprecation.cmds b/test/files/jvm/deprecation.cmds deleted file mode 100644 index 4c0f73c58b..0000000000 --- a/test/files/jvm/deprecation.cmds +++ /dev/null @@ -1,3 +0,0 @@ -javac Defs.java -scalac Test_1.scala -javac Use_2.java 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 } } diff --git a/test/files/pos/t1263/Test.java b/test/files/pos/t1263/Test.java index 6ca88c21a1..1718a99090 100644 --- a/test/files/pos/t1263/Test.java +++ b/test/files/pos/t1263/Test.java @@ -4,6 +4,7 @@ import java.rmi.RemoteException; import test.Map; +@SuppressWarnings("unchecked") public class Test implements Map { public Map.MapTo plus(String o) { return null; -- cgit v1.2.3