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 2011/06/14 19:03:19 UTC

svn commit: r1135706 - /incubator/jena/Experimental/TxTDB/trunk/src/main/java/com/hp/hpl/jena/tdb/transaction/JournalEntry.java

Author: andy
Date: Tue Jun 14 17:03:19 2011
New Revision: 1135706

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

Modified:
    incubator/jena/Experimental/TxTDB/trunk/src/main/java/com/hp/hpl/jena/tdb/transaction/JournalEntry.java

Modified: incubator/jena/Experimental/TxTDB/trunk/src/main/java/com/hp/hpl/jena/tdb/transaction/JournalEntry.java
URL: http://svn.apache.org/viewvc/incubator/jena/Experimental/TxTDB/trunk/src/main/java/com/hp/hpl/jena/tdb/transaction/JournalEntry.java?rev=1135706&r1=1135705&r2=1135706&view=diff
==============================================================================
--- incubator/jena/Experimental/TxTDB/trunk/src/main/java/com/hp/hpl/jena/tdb/transaction/JournalEntry.java (original)
+++ incubator/jena/Experimental/TxTDB/trunk/src/main/java/com/hp/hpl/jena/tdb/transaction/JournalEntry.java Tue Jun 14 17:03:19 2011
@@ -8,8 +8,6 @@ package com.hp.hpl.jena.tdb.transaction;
 
 import java.nio.ByteBuffer ;
 
-import org.openjena.atlas.logging.Log ;
-
 public class JournalEntry
 {
     private final JournalEntryType type ;
@@ -21,8 +19,8 @@ public class JournalEntry
         this.byteBuffer = bytes ;
     }
 
-    public JournalEntryType getType()               { return type ; }
-    public ByteBuffer getByteBuffer()   { return byteBuffer ; }
+    public JournalEntryType getType()       { return type ; }
+    public ByteBuffer getByteBuffer()       { return byteBuffer ; }
 }
 
 /*