Changeset 8358


Ignore:
Timestamp:
2004-10-18T12:32:37+13:00 (20 years ago)
Author:
mdewsnip
Message:

Spaces are now removed from the start and end of classifier arguments.

File:
1 edited

Legend:

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

    r8313 r8358  
    544544            value_str = "";
    545545            while (string_tokenizer.hasMoreElements()) {
    546             String token = (String) string_tokenizer.nextElement();
     546            String raw_token = (String) string_tokenizer.nextElement();
     547            String token = raw_token.trim();
    547548            MetadataElement metadata_element = MetadataTools.getMetadataElementWithDisplayName(token);
    548549            if (metadata_element != null) {
Note: See TracChangeset for help on using the changeset viewer.