Skip to content

Commit

Permalink
fix: clean container.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfaron committed Dec 12, 2023
1 parent 6eb581a commit acfbda3
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions projects/aas-server/src/app/aas-provider/container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,4 @@ export class Container {

return this.configurationEndpoints.length === 0;
}

private findByIdShort(idShort: string): AASDocument | undefined {
for (const item of this._documents.values()) {
if (item.idShort === idShort) {
return item;
}
}

return undefined;
}
}

0 comments on commit acfbda3

Please sign in to comment.