Ignore:
Timestamp:
5/16/2010 11:14:29 AM (2 years ago)
Author:
lowjoel
Message:

Modified all dependent code to compile after the change in the previous revision.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eraser/Eraser.Util/VolumeInfo.cs

    r2148 r2149  
    714714        public override string ToString() 
    715715        { 
    716             ReadOnlyCollection<string> mountPoints = MountPoints; 
    717             return mountPoints.Count == 0 ? VolumeId : mountPoints[0]; 
     716            IList<DirectoryInfo> mountPoints = MountPoints; 
     717            return mountPoints.Count == 0 ? VolumeId : mountPoints[0].FullName; 
    718718        } 
    719719 
Note: See TracChangeset for help on using the changeset viewer.