diff --git a/test/jdk/java/util/concurrent/tck/ExecutorsTest.java b/test/jdk/java/util/concurrent/tck/ExecutorsTest.java
index b4b4324ae5c..91dfd3cce1c 100644
--- a/test/jdk/java/util/concurrent/tck/ExecutorsTest.java
+++ b/test/jdk/java/util/concurrent/tck/ExecutorsTest.java
@@ -329,7 +329,6 @@ public void realRun() {
      * ThreadPoolExecutor using defaultThreadFactory has
      * specified group, priority, daemon status, and name
      */
-    @SuppressWarnings("removal")
     public void testDefaultThreadFactory() throws Exception {
         final ThreadGroup egroup = Thread.currentThread().getThreadGroup();
         final CountDownLatch done = new CountDownLatch(1);
diff --git a/test/jdk/java/util/concurrent/tck/JSR166TestCase.java b/test/jdk/java/util/concurrent/tck/JSR166TestCase.java
index 80e6c98bfa7..f1f32bee310 100644
--- a/test/jdk/java/util/concurrent/tck/JSR166TestCase.java
+++ b/test/jdk/java/util/concurrent/tck/JSR166TestCase.java
@@ -1169,7 +1169,6 @@ static boolean threadOfInterest(ThreadInfo info) {
      * A debugging tool to print stack traces of most threads, as jstack does.
      * Uninteresting threads are filtered out.
      */
-    @SuppressWarnings("removal")
     static void dumpTestThreads() {
         System.err.println("------ stacktrace dump start ------");
         for (ThreadInfo info : THREAD_MXBEAN.dumpAllThreads(true, true))
diff --git a/test/jdk/java/util/concurrent/tck/ThreadPoolExecutorSubclassTest.java b/test/jdk/java/util/concurrent/tck/ThreadPoolExecutorSubclassTest.java
index dec00360f60..fab661e72b4 100644
--- a/test/jdk/java/util/concurrent/tck/ThreadPoolExecutorSubclassTest.java
+++ b/test/jdk/java/util/concurrent/tck/ThreadPoolExecutorSubclassTest.java
@@ -2007,6 +2007,7 @@ public void testFinalizeMethodCallsSuperFinalize() {
              * A finalize method without "throws Throwable", that
              * calls super.finalize().
              */
+            @SuppressWarnings("removal")
             protected void finalize() {
                 super.finalize();
             }
