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/06/14 18:06:45 UTC

svn commit: r1135668 - /incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/out/OutputLangUtils.java

Author: andy
Date: Tue Jun 14 16:06:45 2011
New Revision: 1135668

URL: http://svn.apache.org/viewvc?rev=1135668&view=rev
Log:
Ability to write out Node.ANY - part of JENA-71

Modified:
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/out/OutputLangUtils.java

Modified: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/out/OutputLangUtils.java
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/out/OutputLangUtils.java?rev=1135668&r1=1135667&r2=1135668&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/out/OutputLangUtils.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/out/OutputLangUtils.java Tue Jun 14 16:06:45 2011
@@ -121,6 +121,13 @@ public class OutputLangUtils
             print(out, node.getName()) ;
             return ; 
         }
+        
+        if ( node.equals(Node.ANY) )
+        {
+        	print(out, "ANY") ;
+        	return ;
+        }
+        
         System.err.println("Illegal node: "+node) ;
     }