[Mulgara-svn] r1414 - trunk/src/jar/query/java/org/mulgara/query/operation

pag at mulgara.org pag at mulgara.org
Mon Dec 8 03:00:41 UTC 2008


Author: pag
Date: 2008-12-07 19:00:41 -0800 (Sun, 07 Dec 2008)
New Revision: 1414

Modified:
   trunk/src/jar/query/java/org/mulgara/query/operation/Load.java
Log:
Wrapped the source URI in <> in the textual representation of this command.

Modified: trunk/src/jar/query/java/org/mulgara/query/operation/Load.java
===================================================================
--- trunk/src/jar/query/java/org/mulgara/query/operation/Load.java	2008-12-06 15:07:39 UTC (rev 1413)
+++ trunk/src/jar/query/java/org/mulgara/query/operation/Load.java	2008-12-08 03:00:41 UTC (rev 1414)
@@ -114,7 +114,7 @@
    */
   public String getText() {
     String text = super.getText();
-    if (text == null || text.length() == 0) text = "load " + getSource() + " into <" + getDestination() + ">";
+    if (text == null || text.length() == 0) text = "load <" + getSource() + "> into <" + getDestination() + ">";
     return text;
   }
 




More information about the Mulgara-svn mailing list