Browse Source

Dont access static method through instance

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271396 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
67d542191a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      proposal/myrmidon/src/java/org/apache/antlib/build/SleepTask.java

+ 1
- 1
proposal/myrmidon/src/java/org/apache/antlib/build/SleepTask.java View File

@@ -71,7 +71,7 @@ public class SleepTask
{
try
{
Thread.currentThread().sleep( millis );
Thread.sleep( millis );
}
catch( InterruptedException ie )
{


Loading…
Cancel
Save