Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit b6b7c5a

Browse files
committed
fix($injector): remove bogus fn arg
getService fn takes only one argument, removing the second one. Closes #1711
1 parent 5b5f35d commit b6b7c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auto/injector.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ function createInjector(modulesToLoad) {
556556
args.push(
557557
locals && locals.hasOwnProperty(key)
558558
? locals[key]
559-
: getService(key, path)
559+
: getService(key)
560560
);
561561
}
562562
if (!fn.$inject) {

0 commit comments

Comments
 (0)