Skip to content

Commit 02a3635

Browse files
committed
[ignore] Reformat the super-constructor call to make it more readable
1 parent cff6e20 commit 02a3635

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

exist-core/src/main/java/org/exist/xquery/ModuleContext.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ public class ModuleContext extends XQueryContext {
6565

6666
public ModuleContext(final XQueryContext parentContext, final String modulePrefix, final String moduleNamespace,
6767
final String location) {
68-
super(parentContext != null ? parentContext.db : null, parentContext != null ? parentContext.getConfiguration() : null, null, false);
68+
super(parentContext != null ? parentContext.db : null,
69+
parentContext != null ? parentContext.getConfiguration() : null,
70+
null,
71+
false);
6972

7073
this.modulePrefix = modulePrefix;
7174
this.moduleNamespace = moduleNamespace;

0 commit comments

Comments
 (0)