Skip to content

Commit 1fb9484

Browse files
committed
style: fix formatting for real
1 parent 27c050b commit 1fb9484

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/angular2/src/router/route_registry.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ export class RouteRegistry {
167167
}
168168

169169
if (normalizedLinkParams.length < 2) {
170-
throw new BaseException(`Link "${ListWrapper.toJSON(linkParams)}" must include a route name.`);
170+
let msg = `Link "${ListWrapper.toJSON(linkParams)}" must include a route name.`;
171+
throw new BaseException(msg);
171172
}
172173

173174
for (let i = 1; i < normalizedLinkParams.length; i += 1) {

0 commit comments

Comments
 (0)