ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/JSR166TestCase.java
(Generate patch)

Comparing jsr166/src/test/tck/JSR166TestCase.java (file contents):
Revision 1.11 by dl, Tue Dec 23 19:40:24 2003 UTC vs.
Revision 1.12 by dl, Thu Dec 25 19:48:57 2003 UTC

# Line 466 | Line 466 | public class JSR166TestCase extends Test
466          }
467      }
468  
469 +    class LongPossiblyInterruptedRunnable implements Runnable {
470 +        public void run() {
471 +            try {
472 +                Thread.sleep(LONG_DELAY_MS);
473 +            }
474 +            catch(InterruptedException success) {
475 +            }
476 +        }
477 +    }
478 +
479      /**
480       * For use as ThreadFactory in constructors
481       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines