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

com.github.phantomthief.model.builder.util.MergeUtils Maven / Gradle / Ivy

/**
 * 
 */
package com.github.phantomthief.model.builder.util;

import java.util.Map;
import java.util.Set;

/**
 * @author w.vela
 */
public final class MergeUtils {

    private MergeUtils() {
        throw new UnsupportedOperationException();
    }

    public static Map merge(Map map1, Map map2) {
        map1.putAll(map2);
        return map1;
    }

    public static Set merge(Set set1, Set set2) {
        set1.addAll(set2);
        return set1;
    }
}