Ignore:
Timestamp:
2003-05-27T15:40:47+12:00 (21 years ago)
Author:
mdewsnip
Message:

Fixed tabbing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/util/SwingWorker.java

    r4293 r4364  
    101101    public SwingWorker() {
    102102        final Runnable doFinished = new Runnable() {
    103            public void run() { finished(); }
    104         };
     103        public void run() { finished(); }
     104        };
    105105
    106106        Runnable doConstruct = new Runnable() {
    107             public void run() {
    108                 try {
    109                     setValue(construct());
    110                 }
    111                 finally {
    112                     threadVar.clear();
    113                 }
     107        public void run() {
     108            try {
     109            setValue(construct());
     110            }
     111            finally {
     112            threadVar.clear();
     113            }
    114114
    115                 SwingUtilities.invokeLater(doFinished);
    116             }
    117         };
     115            SwingUtilities.invokeLater(doFinished);
     116        }
     117        };
    118118
    119119        Thread t = new Thread(doConstruct);
Note: See TracChangeset for help on using the changeset viewer.