diff options
author | wisberg <wisberg> | 2003-12-02 18:47:01 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-12-02 18:47:01 +0000 |
commit | 4880b54e69fcd225590fce7079a84d2b17a6ee62 (patch) | |
tree | 608d6e302f842c82f9a4f92904707bed72952730 /testing/testsrc/org/aspectj | |
parent | 9d33c1e59f81762293e3014012183a59fe479775 (diff) | |
download | aspectj-4880b54e69fcd225590fce7079a84d2b17a6ee62.tar.gz aspectj-4880b54e69fcd225590fce7079a84d2b17a6ee62.zip |
no semantic change - avoiding warning about static members accessed via non-static references
Diffstat (limited to 'testing/testsrc/org/aspectj')
-rw-r--r-- | testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java b/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java index eb858da48..9f5d93bd2 100644 --- a/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java +++ b/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java @@ -239,7 +239,7 @@ class MessageAdder implements Runnable { while (!stop && (curTime < timeout) && (curTime < targetTime)) { try { - thread.sleep(targetTime - curTime); + Thread.sleep(targetTime - curTime); } catch (InterruptedException e) { // ignore } |