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 2012/12/02 22:02:54 UTC

svn commit: r1416260 - in /jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena: reasoner/rulesys/impl/LPTopGoalIterator.java shared/ReificationStyle.java

Author: andy
Date: Sun Dec  2 21:02:53 2012
New Revision: 1416260

URL: http://svn.apache.org/viewvc?rev=1416260&view=rev
Log: (empty)

Modified:
    jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/reasoner/rulesys/impl/LPTopGoalIterator.java
    jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/shared/ReificationStyle.java

Modified: jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/reasoner/rulesys/impl/LPTopGoalIterator.java
URL: http://svn.apache.org/viewvc/jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/reasoner/rulesys/impl/LPTopGoalIterator.java?rev=1416260&r1=1416259&r2=1416260&view=diff
==============================================================================
--- jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/reasoner/rulesys/impl/LPTopGoalIterator.java (original)
+++ jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/reasoner/rulesys/impl/LPTopGoalIterator.java Sun Dec  2 21:02:53 2012
@@ -78,9 +78,6 @@ public class LPTopGoalIterator implement
      * lookahead buffer.
      */
     private void moveForward() {
-        // Elsewhere code takes an LPBRuleEngine then an LPTopGoalIterator
-        // Ensure we do that lock order here as well as just synchronized on the method
-        // reverses the locks.
         LPBRuleEngine lpEngine ;
         synchronized(this)
         {

Modified: jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/shared/ReificationStyle.java
URL: http://svn.apache.org/viewvc/jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/shared/ReificationStyle.java?rev=1416260&r1=1416259&r2=1416260&view=diff
==============================================================================
--- jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/shared/ReificationStyle.java (original)
+++ jena/branches/jena-core-simplified/src/main/java/com/hp/hpl/jena/shared/ReificationStyle.java Sun Dec  2 21:02:53 2012
@@ -28,10 +28,10 @@ package com.hp.hpl.jena.shared;
 public class ReificationStyle
     {
     public static final ReificationStyle Standard = new ReificationStyle( true, false );
-    /** @deprecated Only "Standard" is supported -- use of this constant wil be ignored */
+    /** @deprecated Only "Standard" is supported -- use of this constant will be ignored */
     @Deprecated
     public static final ReificationStyle Convenient = new ReificationStyle( true, true );
-    /** @deprecated Only "Standard" is supported -- use of this constant wil be ignored */
+    /** @deprecated Only "Standard" is supported -- use of this constant will be ignored */
     @Deprecated
     public static final ReificationStyle Minimal = new ReificationStyle( false, true );