Changeset 7159


Ignore:
Timestamp:
2004-03-30T17:18:14+12:00 (20 years ago)
Author:
kjdon
Message:

realigned some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/msm/MetadataSetManager.java

    r6888 r7159  
    12031203    if(metadata.contains(data)) {
    12041204        ArrayList undo = new ArrayList();
    1205                 // We do have it. If action == CONFIRM, show user prompt.
     1205        // We do have it. If action == CONFIRM, show user prompt.
    12061206        if(action == MetaEditPrompt.CONFIRM) {
    12071207        MetaEditPrompt mep = new MetaEditPrompt(MetaEditPrompt.REMOVE_PROMPT, multiple_selection, record.getFile(), data.getElement().toString(), data.getValue(), "");
    12081208        user_action = mep.display();
    12091209        }
    1210                 // Set action to match the user_action under certain circumstances.
     1210        // Set action to match the user_action under certain circumstances.
    12111211        if(user_action == MetaEditPrompt.CANCEL || user_action == MetaEditPrompt.REMOVE_ALL) {
    12121212        action = user_action;
     
    12161216        undo.add(data);
    12171217        }
    1218                 // Store undo information
     1218        // Store undo information
    12191219        undo_buffer.put(record, undo);
    12201220    }
Note: See TracChangeset for help on using the changeset viewer.