Skip to content

Commit

Permalink
Remove comment that isn't clear
Browse files Browse the repository at this point in the history
  • Loading branch information
corymhall committed Nov 15, 2024
1 parent 00cfcbd commit bc18e1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/cdk-logical-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export function makeUniqueId(components: string[]) {
throw new Error('Unable to calculate a unique id for an empty set of components');
}

// Lazy require in order to break a module dependency cycle
const unresolvedTokens = components.filter((c) => cdk.Token.isUnresolved(c));
if (unresolvedTokens.length > 0) {
throw new Error(`ID components may not include unresolved tokens: ${unresolvedTokens.join(',')}`);
Expand Down

0 comments on commit bc18e1a

Please sign in to comment.