You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by vi...@apache.org on 2012/07/13 01:34:47 UTC

svn commit: r1361001 - /incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/functions/Function.java

Author: vinayakb
Date: Thu Jul 12 23:34:47 2012
New Revision: 1361001

URL: http://svn.apache.org/viewvc?rev=1361001&view=rev
Log:
Removed builtin flag from FunctionIdentifier in Algebricks

Modified:
    incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/functions/Function.java

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/functions/Function.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/functions/Function.java?rev=1361001&r1=1361000&r2=1361001&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/functions/Function.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/functions/Function.java Thu Jul 12 23:34:47 2012
@@ -36,7 +36,7 @@ public abstract class Function implement
     protected final Signature signature;
 
     public Function(QName qname, Signature signature) {
-        this.fid = new FunctionIdentifier(VXQUERY, "{" + qname.getNamespaceURI() + "}" + qname.getLocalPart(), false);
+        this.fid = new FunctionIdentifier(VXQUERY, "{" + qname.getNamespaceURI() + "}" + qname.getLocalPart());
         this.qname = qname;
         this.signature = signature;
     }