Ignore:
Timestamp:
2004-08-19T16:13:45+12:00 (20 years ago)
Author:
mdewsnip
Message:

Tightened up some public functions to be private.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/metaaudit/Autofilter.java

    r6221 r8003  
    8282     * @return -1 if s is less than p, 0 if they are equal, 1 if s is greater than p
    8383     */
    84     static public int compareToPattern(String s, String p) {
     84    static private int compareToPattern(String s, String p) {
    8585    if(p.indexOf(StaticStrings.STAR_CHAR) == -1) {
    8686        return compareToPattern(s, p, 0, 0, false);
Note: See TracChangeset for help on using the changeset viewer.