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.50 by dl, Mon Feb 9 13:28:48 2004 UTC vs.
Revision 1.51 by jsr166, Mon May 2 08:40:27 2005 UTC

# Line 463 | Line 463 | public class Executors {
463                      public Object run() {
464                          try {
465                              result = task.call();
466 <                        } catch(Exception ex) {
466 >                        } catch (Exception ex) {
467                              exception = ex;
468                          }
469                          return null;
# Line 506 | Line 506 | public class Executors {
506                                  savedcl = cl;
507                              }
508                              result = task.call();
509 <                        } catch(Exception ex) {
509 >                        } catch (Exception ex) {
510                              exception = ex;
511                          } finally {
512                              if (savedcl != null)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines