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

io.phasetwo.service.model.jpa.entity.Entities Maven / Gradle / Ivy

There is a newer version: 0.84
Show newest version
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