Skip to content

Commit 50832cf

Browse files
committed
DefaultScriptService: fix NPE
Thanks, Jenkins.
1 parent f88984c commit 50832cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/scijava/script/DefaultScriptService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public Collection<ScriptInfo> get() {
296296
{
297297
// NB: Add service type aliases after all services have joined the context.
298298
for (final Service service : getContext().getServiceIndex()) {
299-
addAliases(aliasMap, service.getClass());
299+
addAliases(aliasMap(), service.getClass());
300300
}
301301
}
302302

0 commit comments

Comments
 (0)