maven-resolver-api/src/main/java/org/eclipse/aether/repository/LocalArtifactRegistration.java [125:132]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public LocalArtifactRegistration setContexts(Collection<String> contexts) {
        if (contexts != null) {
            this.contexts = contexts;
        } else {
            this.contexts = Collections.emptyList();
        }
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven-resolver-api/src/main/java/org/eclipse/aether/repository/LocalMetadataRegistration.java [124:131]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public LocalMetadataRegistration setContexts(Collection<String> contexts) {
        if (contexts != null) {
            this.contexts = contexts;
        } else {
            this.contexts = Collections.emptyList();
        }
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



