Skip to content

Commit

Permalink
Merge branch 'WFCORE-7113' into ModuleIdentifier_in_API
Browse files Browse the repository at this point in the history
  • Loading branch information
bstansberry committed Dec 22, 2024
2 parents 5054f88 + 33d753b commit 120e431
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,16 @@ public AdditionalModuleSpecification(ModuleIdentifier moduleIdentifier, Collecti
this.resourceRoots = new ArrayList<ResourceRoot>(resourceRoots);
}

/** @deprecated use {@link #getModuleName()} */
@Deprecated(forRemoval = true)
public ModuleIdentifier getModuleIdentifier() {
return moduleIdentifier;
}

public String getModuleName() {
return moduleIdentifier.toString();
}


public void addResourceRoot(ResourceRoot resourceRoot) {
this.resourceRoots.add(resourceRoot);
Expand Down

0 comments on commit 120e431

Please sign in to comment.