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

org.aeonbits.owner.ExamplesBase Maven / Gradle / Ivy

There is a newer version: 4.0.0-M1
Show newest version
/*
 * Copyright (c) 2012-2015, Luigi R. Viggiano
 * All rights reserved.
 *
 * This software is distributable under the BSD license.
 * See the terms of the BSD license in the documentation provided with this software.
 */

package org.aeonbits.owner;

import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.Properties;

/**
 * @author Luigi R. Viggiano
 */
public class ExamplesBase {
    public static void save(File target, Properties p) throws IOException {
        Util.save(target, p);
    }

    public static File fileFromURI(String spec) throws URISyntaxException {
        return Util.fileFromURI(spec);
    }
}




© 2015 - 2026 Weber Informatics LLC | Privacy Policy