jglobus / JGlobus

jGlobus is a collection of Java client libraries for Globus® Toolkit security, GRAM, and GridFTP.
http://www.globus.org/toolkit/jglobus/
Apache License 2.0
24 stars 44 forks source link

remove useless method TrustedCertificates.refresh() #74

Closed kofemann closed 11 years ago

kofemann commented 11 years ago

refresh() method is a NOP:

public void refresh() {
    reload(null);
}

public synchronized void reload(String locations) {
    if (locations == null) {
        return;
    }

....

bbockelm commented 11 years ago

Looks good to me. Merging.