All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kohsuke.stapler.Properties Maven / Gradle / Ivy

There is a newer version: 1.16
Show newest version
package org.kohsuke.stapler;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

/**
 * @author Kohsuke Kawaguchi
 */
public class Properties extends java.util.Properties {
    public Properties() {
        super();
    }

    /**
     * Loads from the file.
     */
    public Properties(File src) throws IOException {
        FileInputStream in = new FileInputStream(src);
        try {
            load(in);
        } finally {
            in.close();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy