You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2011/07/29 14:49:57 UTC

svn commit: r1152191 - /incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/system/RiotLib.java

Author: andy
Date: Fri Jul 29 12:49:56 2011
New Revision: 1152191

URL: http://svn.apache.org/viewvc?rev=1152191&view=rev
Log:
Setting to not resolve IRI broke prefix mapping. 

Modified:
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/system/RiotLib.java

Modified: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/system/RiotLib.java
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/system/RiotLib.java?rev=1152191&r1=1152190&r2=1152191&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/system/RiotLib.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/system/RiotLib.java Fri Jul 29 12:49:56 2011
@@ -74,7 +74,7 @@ public class RiotLib
         if ( resolveIRIs )
             prologue = new Prologue(new PrefixMap(), IRIResolver.create(baseIRI)) ;
         else
-            prologue = new Prologue(null, IRIResolver.createNoResolve()) ;
+            prologue = new Prologue(new PrefixMap(), IRIResolver.createNoResolve()) ;
     
         if ( checking )
             return new ParserProfileChecker(prologue, handler) ;