Changeset 8247


Ignore:
Timestamp:
2004-10-08T14:08:30+13:00 (20 years ago)
Author:
mdewsnip
Message:

Removed dependencies on the Gatherer class.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/BasicCollectionConfiguration.java

    r8236 r8247  
    3939import java.io.*;
    4040import org.greenstone.gatherer.DebugStream;
    41 import org.greenstone.gatherer.Gatherer;
     41import org.greenstone.gatherer.Dictionary;
    4242import org.greenstone.gatherer.cdm.CommandTokenizer;
    4343import org.greenstone.gatherer.util.Codec;
     
    110110                if (meta_type_str.equals(StaticStrings.COLLECTIONMETADATA_COLLECTIONNAME_STR)) {
    111111                    // If this is the first collection title found, then use it, otherwise search for one that more closely matches our choosen interface language
    112                     if (name == null || language_str.equals(Gatherer.dictionary.getLanguage())) {
     112                    if (name == null || language_str.equals(Dictionary.getLanguage())) {
    113113                    name = Codec.transform(value_str, Codec.GREENSTONE_TO_TEXT);
    114114                    }
     
    116116                else if (meta_type_str.equals(StaticStrings.COLLECTIONMETADATA_COLLECTIONEXTRA_STR)) {
    117117                    // Again we are either looking for the first description, then after that a language specific one
    118                     if (description == null || language_str.equals(Gatherer.dictionary.getLanguage())) {
     118                    if (description == null || language_str.equals(Dictionary.getLanguage())) {
    119119                    description = Codec.transform(value_str, Codec.GREENSTONE_TO_TEXT);
    120120                    }
Note: See TracChangeset for help on using the changeset viewer.