*** empty log message ***
[IRC.git] / Robust / Transactions / TransactionalIO / src / TransactionalIO / core / GlobalINodeState.java
index 291ebda7a5ea206dab6256d605ce798264d505e1..7b6e662f9ee40b90888a04d9b3958d305d9cdea3 100644 (file)
@@ -49,7 +49,6 @@ public class GlobalINodeState {
     private ConcurrentHashMap conlockmap = new ConcurrentHashMap();
     
     public GlobalLength commitedfilesize;
-    private ExtendedTransaction writer;
     public int seqNum = 0;
     private INode inode;
 
@@ -60,7 +59,6 @@ public class GlobalINodeState {
     
     
     protected GlobalINodeState(INode inode, long length) {
-        writer = null;
         lockmap = new HashMap();
        
         commitedfilesize = new GlobalLength(length);
@@ -79,14 +77,7 @@ public class GlobalINodeState {
         this.commitedfilesize = commitedfilesize;
     }
     
-    public ExtendedTransaction getWriter() {
-        return writer;
-    }
 
-    public void setWriter(ExtendedTransaction writer) {
-        this.writer = writer;
-    }
-    
      public BlockDataStructure getBlockDataStructure(Integer blocknumber) {
      /*       synchronized (lockmap) {
                 if (lockmap.containsKey(blocknumber)) {