Changeset 12046


Ignore:
Timestamp:
2006-07-07T09:43:12+12:00 (18 years ago)
Author:
mdewsnip
Message:

(FindBugs) Removed unread variable.

File:
1 edited

Legend:

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

    r8474 r12046  
    732732    /** When the writer thread is busy writing content to the file this flag is set to true. */
    733733    private boolean running;
    734     /** When the writer thread is running, but has emptied the current queue and so is waiting, this flag is set to true. */
    735     private boolean waiting;
    736734    /** The fragment queue as a Vector (for thread reasons). */
    737735    private Vector queue;
     
    742740        exit = false;
    743741        queue = new Vector();
    744         waiting = false;
    745742    }
    746743
     
    798795            try {
    799796                print("WriterThread.wait() start");
    800                 waiting = true;
    801797                wait();
    802798            }
     
    804800            }
    805801            print("WriterThread.wait() complete");
    806             waiting = false;
    807802           }
    808803        }
Note: See TracChangeset for help on using the changeset viewer.