Changeset 12449


Ignore:
Timestamp:
2006-08-15T16:30:23+12:00 (18 years ago)
Author:
kjdon
Message:

Classifier.toString no longer has classify in front, so don't need to remove this when doing Entry.toString

File:
1 edited

Legend:

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

    r12365 r12449  
    11211121    public String toString() {
    11221122        if(classifier != null) {
    1123         // Return the classifier - less the 'classify ' prefix and with its CL index shown
    1124         return classifier.getPositionString() + StaticStrings.COLON_CHARACTER + StaticStrings.SPACE_CHARACTER + classifier.toString().substring(9);
     1123        // Return the classifier - with its CL index shown
     1124        return classifier.getPositionString() + StaticStrings.COLON_CHARACTER + StaticStrings.SPACE_CHARACTER + classifier.toString();
    11251125        }
    11261126        if (text.equals("")) {
Note: See TracChangeset for help on using the changeset viewer.