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

net.thucydides.core.util.PropertiesUtil Maven / Gradle / Ivy

package net.thucydides.core.util;

import java.util.Properties;

public class PropertiesUtil {
    public static Properties copyOf(Properties sourceProperties) {
        Properties copiedProperties = new Properties();
        for(String propertyName : sourceProperties.stringPropertyNames()) {
            if (sourceProperties.getProperty(propertyName) != null) {
                copiedProperties.setProperty(propertyName, sourceProperties.getProperty(propertyName));
            }
        }
        return copiedProperties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy