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

com.github.fridujo.automocker.utils.PropertiesBuilder Maven / Gradle / Ivy

The newest version!
package com.github.fridujo.automocker.utils;

import java.util.Properties;

public final class PropertiesBuilder {
    private PropertiesBuilder() {
    }

    public static Properties of(String key, String value) {
        Properties properties = new Properties();
        properties.setProperty(key, value);
        return properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy