diff --git a/src/j1/TestThread.java b/src/j1/TestThread.java index 4d32d8e..57c4a38 100644 --- a/src/j1/TestThread.java +++ b/src/j1/TestThread.java @@ -5,9 +5,9 @@ public static void main(String[] args){ System.out.print("TestThread started."); - MyThread mt1 = new MyThread("1 ", 8000); - MyThread mt2 = new MyThread("2 ", 6000); - MyThread mt3 = new MyThread("3 ", 2900); + MyThread mt1 = new MyThread("1 ", 2000); + MyThread mt2 = new MyThread("2 ", 4000); + MyThread mt3 = new MyThread("3 ", 8000); mt1.start(); mt2.start();