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/06/08 19:46:04 UTC

svn commit: r1348167 - /jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/transaction/ObjectFileTrans.java

Author: andy
Date: Fri Jun  8 17:46:04 2012
New Revision: 1348167

URL: http://svn.apache.org/viewvc?rev=1348167&view=rev
Log:
Tidy

Modified:
    jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/transaction/ObjectFileTrans.java

Modified: jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/transaction/ObjectFileTrans.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/transaction/ObjectFileTrans.java?rev=1348167&r1=1348166&r2=1348167&view=diff
==============================================================================
--- jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/transaction/ObjectFileTrans.java (original)
+++ jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/transaction/ObjectFileTrans.java Fri Jun  8 17:46:04 2012
@@ -95,12 +95,12 @@ public class ObjectFileTrans implements 
     }
 
     /** Copy from the temporary file to the real file */
-    public /*temporary*/ void append()
+    private void append()
     {
         // We could write directly to the real file if:
-        //   we record the truncate point needed for an abort
-        //   manage partial final writes
-        //   deny the existence of nodes after the transaction mark.
+        //    we record the truncate point needed for an abort
+        //    manage partial final writes
+        //    deny the existence of nodes after the transaction mark.
         // Later - stay simple for now.
         
         // Truncate/position the ObjectFile.
@@ -119,7 +119,7 @@ public class ObjectFileTrans implements 
         }
     }
     
-    public void setPassthrough(boolean v) { passthrough = v ; }
+    //public void setPassthrough(boolean v) { passthrough = v ; }
     
     @Override
     public void reposition(long id)