Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 153686
Collapse All | Expand All

(-)src/com/ibm/icu/charset/CharsetICU.java.orig (+7 lines)
Lines 225-229 Link Here
225
        }
225
        }
226
        return Charset.forName(charsetName);
226
        return Charset.forName(charsetName);
227
    }
227
    }
228
229
    public final int compareTo(Object o) {
230
        if (o instanceof CharsetICU) {
231
            return this.javaCanonicalName.compareTo(((CharsetICU) o).javaCanonicalName);
232
	}
233
        return -1;
234
    }
228
}
235
}
229
236

Return to bug 153686