Changeset 4624


Ignore:
Timestamp:
2003-06-12T18:06:31+12:00 (21 years ago)
Author:
kjdon
Message:

indented some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/ArgumentConfiguration.java

    r4559 r4624  
    347347        String tip = "<html>" + argument.getDesc() + "</html>";
    348348        tip = Utility.formatHTMLWidth(tip, 60);
    349                 // If this is the first control, there is no history.
     349        // If this is the first control, there is no history.
    350350        if(previous_owner == null) {
    351351        previous_owner = argument.getOwner();
    352352        addHeader(previous_owner, Color.white);
    353353        }
    354                 // Otherwise if the owner of the control has changed since the last argument, toggle the colouring of the control.
     354        // Otherwise if the owner of the control has changed since the last argument, toggle the colouring of the control.
    355355        else if(previous_owner != argument.getOwner()) {
    356356        coloured = !coloured;
     
    358358        addHeader(previous_owner, (coloured ? Gatherer.config.getColor("coloring.collection_tree_background", false) : Color.white));
    359359        }
    360                 // Create
     360        // Create
    361361        if(coloured) {
    362362        setBackground(Gatherer.config.getColor("coloring.collection_tree_background", false));
Note: See TracChangeset for help on using the changeset viewer.