Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copyArtifact (0.17 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

         */
        public static <T extends Collection<Artifact>> T copyArtifacts(Collection<Artifact> from, T to) {
            for (Artifact artifact : from) {
                to.add(ArtifactUtils.copyArtifact(artifact));
            }
            return to;
        }
    
        public static <K, T extends Map<K, Artifact>> T copyArtifacts(Map<K, ? extends Artifact> from, T to) {
            if (from != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 6.9K bytes
    - Viewed (0)
Back to top