Revision ec1a1baf trunk/Pithos.Core/Agents/CloudTransferAction.cs

b/trunk/Pithos.Core/Agents/CloudTransferAction.cs
72 72

  
73 73

  
74 74
        public Lazy<string> LocalHash { get; protected set; }
75
        private Lazy<string> _topHash;
76
        public Lazy<string> TopHash
77
        {
78
            get { return _topHash; }
79
            set { _topHash = value; }
80
        }
75
        public Lazy<string> TopHash { get; set; }
81 76

  
82 77

  
83 78
        [ContractInvariantMethod]
......
126 121

  
127 122
        public override string ToString()
128 123
        {
129
            return String.Format("{0}:{1}->{2}", this.Action, this.LocalFile.FullName, this.CloudFile.Name);
124
            return String.Format("{0}:{1}->{2}", Action, LocalFile.FullName, CloudFile.Name);
130 125
        }
131 126

  
132 127
        protected static ObjectInfo CreateObjectInfoFor(AccountInfo accountInfo, FileSystemInfo fileInfo)
......
208 203

  
209 204
        public override string ToString()
210 205
        {
211
            return String.Format("{0}: _ ->{1}", this.Action, this.CloudFile.Name);
206
            return String.Format("{0}: _ ->{1}", Action, CloudFile.Name);
212 207
        }
213 208

  
214 209
    }
......
249 244

  
250 245
        public override string ToString()
251 246
        {
252
            return String.Format("{0}:{1}->{2}", this.Action, OldCloudFile.Name, CloudFile.Name);
247
            return String.Format("{0}:{1}->{2}", Action, OldCloudFile.Name, CloudFile.Name);
253 248
        }
254 249

  
255 250
    }

Also available in: Unified diff