Skip to content

Commit bc91c63

Browse files
committed
refactor(@angular-devkit/core): deprecate PartiallyOrderedSet
The PartiallyOrderedSet class was only used to handle dependencies in SchemaRegistry transforms. Since that feature is now deprecated, this class is also marked as deprecated.
1 parent b7319b1 commit bc91c63

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/angular_devkit/core/src/utils/partially-ordered-set.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ export class CircularDependencyFoundException extends BaseException {
1919
}
2020
}
2121

22+
/**
23+
* @deprecated Use standard arrays and ensure correct insertion order instead.
24+
*/
2225
export class PartiallyOrderedSet<T> {
2326
private _items = new Map<T, Set<T>>();
2427

0 commit comments

Comments
 (0)