private ArtifactKey()

in src/main/java/org/apache/sling/tooling/lc/aether/ArtifactKey.java [41:46]


    private ArtifactKey(String groupId, String artifactId, String classifier, String type) {
        this.groupId = groupId;
        this.artifactId = artifactId;
        this.classifier = classifier != null ? classifier : "";
        this.type = type;
    }