![JAR search and dependency download from the Maven repository](/logo.png)
io.phasetwo.service.model.jpa.entity.Entities Maven / Gradle / Ivy
package io.phasetwo.service.model.jpa.entity;
import java.util.Collection;
public class Entities {
static void setCollection(Collection src, Collection dest) {
if (dest == null) {
dest = src;
} else if (dest != src) {
dest.clear();
if (src != null) {
dest.addAll(src);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy