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

Comparing jsr166/src/main/java/util/concurrent/Executors.java (file contents):
Revision 1.97 by dl, Sat Apr 15 00:12:38 2017 UTC vs.
Revision 1.98 by jsr166, Wed Aug 16 17:18:34 2017 UTC

# Line 485 | Line 485 | public class Executors {
485              task.run();
486              return result;
487          }
488 +        public String toString() {
489 +            return super.toString() + "[Wrapped task = " + task + "]";
490 +        }
491      }
492  
493      /**
# Line 511 | Line 514 | public class Executors {
514                  throw e.getException();
515              }
516          }
517 +
518 +        public String toString() {
519 +            return super.toString() + "[Wrapped task = " + task + "]";
520 +        }
521      }
522  
523      /**
# Line 563 | Line 570 | public class Executors {
570                  throw e.getException();
571              }
572          }
573 +
574 +        public String toString() {
575 +            return super.toString() + "[Wrapped task = " + task + "]";
576 +        }
577      }
578  
579      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines