Ignore:
Timestamp:
2004-12-14T17:21:05+13:00 (19 years ago)
Author:
mdewsnip
Message:

Minor changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/util/Utility.java

    r8808 r8809  
    108108    /** Definition of an important zip file, in this case zipped up version of metadata file stored in JAR file */
    109109    static final public String METADATA_ZIP = "metadata.zip";
    110     /** The location the gatherer expects to find metadata set information. */
    111     static final public String METADATA_SET_TEMPLATE = "xml/template.mds";
    112     static final public String METADATA_VALUE_TEMPLATE = "xml/template.mdv";
    113110    /** The default name of the perl executable under unix. */
    114111    static final public String PERL_EXECUTABLE_UNIX = "perl";
     
    881878     * @return A <strong>String</strong> made from appending space characters with the string until it has a length equal to length.
    882879     */
    883     public static String pad(String str_raw, int length, char fill, boolean end) {
     880    static private String pad(String str_raw, int length, char fill, boolean end) {
    884881    StringBuffer str = new StringBuffer(str_raw);
    885882    while(str.length() < length) {
Note: See TracChangeset for help on using the changeset viewer.