This commit is contained in:
Grahame Grieve 2024-08-04 10:39:23 +08:00
parent e73447939b
commit 8790780feb
1 changed files with 3 additions and 0 deletions

View File

@ -630,6 +630,9 @@ public class CanonicalResourceManager<T extends CanonicalResource> {
}
public List<T> getSupplements(T cr) {
if (cr == null) {
return new ArrayList<T>();
}
if (cr.hasSourcePackage()) {
List<String> pvl = new ArrayList<>();
pvl.add(cr.getSourcePackage().getVID());