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

Comparing jsr166/src/main/java/util/concurrent/ThreadFactory.java (file contents):
Revision 1.14 by jsr166, Thu Jun 9 07:48:43 2011 UTC vs.
Revision 1.15 by jsr166, Tue Feb 17 18:55:39 2015 UTC

# Line 13 | Line 13 | package java.util.concurrent;
13   *
14   * <p>
15   * The simplest implementation of this interface is just:
16 < *  <pre> {@code
16 > * <pre> {@code
17   * class SimpleThreadFactory implements ThreadFactory {
18   *   public Thread newThread(Runnable r) {
19   *     return new Thread(r);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines