ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jdk7/java/util/concurrent/Executor.java
(Generate patch)

Comparing jsr166/src/jdk7/java/util/concurrent/Executor.java (file contents):
Revision 1.3 by jsr166, Tue Feb 5 19:54:07 2013 UTC vs.
Revision 1.4 by jsr166, Sun May 25 01:13:01 2014 UTC

# Line 61 | Line 61 | package java.util.concurrent;
61   *   }
62   *
63   *   public synchronized void execute(final Runnable r) {
64 < *     tasks.offer(new Runnable() {
64 > *     tasks.add(new Runnable() {
65   *       public void run() {
66   *         try {
67   *           r.run();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines