Skip to content

Commit

Permalink
Make-all-module-imports-relative Resolving issue #368
Browse files Browse the repository at this point in the history
  • Loading branch information
hizclick committed Oct 18, 2024
1 parent fb08993 commit d4737b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions add/data/xqm/util.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ module namespace eutil = "http://www.edirom.de/xquery/util";

import module namespace functx = "http://www.functx.com";

import module namespace annotation="http://www.edirom.de/xquery/annotation" at "../xqm/annotation.xqm";
import module namespace edition="http://www.edirom.de/xquery/edition" at "../xqm/edition.xqm";
import module namespace annotation="http://www.edirom.de/xquery/annotation" at "annotation.xqm";
import module namespace edition="http://www.edirom.de/xquery/edition" at "edition.xqm";
import module namespace source="http://www.edirom.de/xquery/source" at "source.xqm";
import module namespace teitext="http://www.edirom.de/xquery/teitext" at "teitext.xqm";
import module namespace work="http://www.edirom.de/xquery/work" at "work.xqm";
Expand Down
2 changes: 1 addition & 1 deletion add/data/xqm/work.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module namespace work = "http://www.edirom.de/xquery/work";

(: IMPORTS ================================================================= :)

import module namespace eutil="http://www.edirom.de/xquery/util" at "../xqm/util.xqm";
import module namespace eutil="http://www.edirom.de/xquery/util" at "util.xqm";

(: NAMESPACE DECLARATIONS ================================================== :)

Expand Down

0 comments on commit d4737b8

Please sign in to comment.