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

andrae at mulgara.org andrae at mulgara.org
Wed Sep 12 05:17:42 UTC 2007


Author: andrae
Date: 2007-09-12 00:17:42 -0500 (Wed, 12 Sep 2007)
New Revision: 429

Modified:
   trunk/src/jar/query/java/org/mulgara/query/Query.java
Log:
Opps sorry about that, left some debugging info in by mistake.



Modified: trunk/src/jar/query/java/org/mulgara/query/Query.java
===================================================================
--- trunk/src/jar/query/java/org/mulgara/query/Query.java	2007-09-12 05:12:20 UTC (rev 428)
+++ trunk/src/jar/query/java/org/mulgara/query/Query.java	2007-09-12 05:17:42 UTC (rev 429)
@@ -213,7 +213,6 @@
    * where-clause in the original query.
    */
   public Query(Query query, ConstraintExpression where) {
-    logger.warn("Creating new query from: " + System.identityHashCode(query), new Throwable());
     this.mutableVariableList = query.mutableVariableList;
     this.variableList = query.variableList;
     this.modelExpression = query.modelExpression;
@@ -460,7 +459,6 @@
    * Close this {@link Query}, and the underlying {@link Answer} objects.
    */
   public void close() throws TuplesException {
-    logger.warn("Query: " + System.identityHashCode(this) + " closed", new Throwable());
     answer.close();
     answer = null;
 




More information about the Mulgara-svn mailing list