ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/DirectExecutor.java
Revision: 1.2
Committed: Wed May 28 15:03:14 2003 UTC (21 years ago) by tim
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Moved tests to corresponding packages.

File Contents

# Content
1 import java.util.concurrent.Executor;
2
3 class DirectExecutor implements Executor {
4 public void execute(Runnable r) {
5 r.run();
6 }
7 }
8