Skip to content

Commit

Permalink
[bugfix] Don't set the baseURI
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Mar 5, 2017
1 parent 0b885c6 commit ebd5e25
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ public Sequence eval(final Sequence[] args, final Sequence contextSequence) thro
}

// determine the baseURI
final URI baseUri = getStaticBaseURI();
// final URI baseUri = getStaticBaseURI();

This comment has been minimized.

Copy link
@shabanovd

shabanovd Mar 5, 2017

Member

@adamretter why you commit this without review or test?

final URI baseUri = null; //TODO(AR) setting the baseUri seems to cause problems... revisit in future

// execute the XProc
final String outputResult = XProcRunner.run(baseUri, context.getBroker(), userArgs, primary.orElse(null));
Expand Down

0 comments on commit ebd5e25

Please sign in to comment.