From bdf3e4f748297359a1252492f68c8478e00672eb Mon Sep 17 00:00:00 2001 From: kvn Date: Tue, 19 Jan 2010 10:25:54 -0800 Subject: [PATCH] 6917931: compiler/6895383/Test.java don't compile due missed imports Summary: Add missing imports. Reviewed-by: never, twisti --- test/compiler/6895383/Test.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/compiler/6895383/Test.java b/test/compiler/6895383/Test.java index 719ba3113..56af70cc3 100644 --- a/test/compiler/6895383/Test.java +++ b/test/compiler/6895383/Test.java @@ -30,6 +30,9 @@ * @run main/othervm -Xcomp Test */ +import java.util.*; +import java.util.concurrent.*; + public class Test { public static void main(String argv[]) { Test test = new Test(); -- GitLab