Ignore:
Timestamp:
2004-10-08T09:46:12+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all Gatherer.print* with DebugStream.print*.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/table/GTableModel.java

    r8231 r8236  
    3333import javax.swing.table.*;
    3434import org.greenstone.gatherer.Configuration;
     35import org.greenstone.gatherer.DebugStream;
    3536import org.greenstone.gatherer.Dictionary;
    3637import org.greenstone.gatherer.Gatherer;
     
    208209        ElementWrapper element = metadatum.getElement();
    209210        if (i < 0) {
    210         Gatherer.println("Could not find suitable row to select!");
     211        DebugStream.println("Could not find suitable row to select!");
    211212        i = 0; // select the first one
    212213        }
     
    217218            i--;
    218219            if (i < 0) {
    219             Gatherer.println("Could not find suitable row to select!");
     220            DebugStream.println("Could not find suitable row to select!");
    220221            i = 0;
    221222            }
     
    223224            newly_selected_metadatum = (Metadata) current_metadata.get(i);
    224225            if (!newly_selected_metadatum.getElement().equals(element)) {
    225                 Gatherer.println("Could not find suitable row to select!");
     226                DebugStream.println("Could not find suitable row to select!");
    226227                i = 0;
    227228            }
     
    341342    {
    342343        if (!Gatherer.c_man.ready()) {
    343         Gatherer.println("Not ready!");
     344        DebugStream.println("Not ready!");
    344345        return;
    345346        }
Note: See TracChangeset for help on using the changeset viewer.