Changeset 4488


Ignore:
Timestamp:
2003-06-05T13:30:13+12:00 (21 years ago)
Author:
kjdon
Message:

properly indented some comments

File:
1 edited

Legend:

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

    r4404 r4488  
    364364    for(int i = 0; i < elements.getLength(); i++) {
    365365        Element element = (Element) elements.item(i);
    366                 ///ystem.err.println("Compare to: " + element.getAttribute("name"));
     366        ///ystem.err.println("Compare to: " + element.getAttribute("name"));
    367367        if(element.getAttribute("name").equals(name)) {
    368368        return element;
     
    394394    public String getName() {
    395395    if(name == null) {
    396                 // Determine the code.
     396        // Determine the code.
    397397        String language_code = Gatherer.dictionary.getLanguage();
    398                 // Recover all Name elements
     398        // Recover all Name elements
    399399        NodeList names = document.getElementsByTagName("Name");
    400                 // Iterate through the available names looking for the appropriate one. Also make note of the first name, then overwrite it with any english one.
     400        // Iterate through the available names looking for the appropriate one. Also make note of the first name, then overwrite it with any english one.
    401401        boolean found = false;
    402402        for(int i = 0; !found && i < names.getLength(); i++) {
Note: See TracChangeset for help on using the changeset viewer.