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.DefaultPlugins/ErasureTargets/FolderErasureTarget.cs

    r2143 r2149  
    188188                bool isVolumeRoot = directory.Parent == null; 
    189189                foreach (VolumeInfo volume in VolumeInfo.Volumes) 
    190                     foreach (string mountPoint in volume.MountPoints) 
    191                         if (directory.FullName == mountPoint) 
     190                    foreach (DirectoryInfo mountPoint in volume.MountPoints) 
     191                        if (directory.FullName == mountPoint.FullName) 
    192192                            isVolumeRoot = true; 
    193193 
Note: See TracChangeset for help on using the changeset viewer.