Changeset 1770
- Timestamp:
- 2/8/2010 7:41:24 AM (2 years ago)
- Location:
- branches/eraser6/CodeReview
- Files:
-
- 5 edited
-
Eraser.Util/ConsoleWindow.cs (modified) (1 diff)
-
Eraser.Util/Security.cs (modified) (1 diff)
-
Eraser.Util/VolumeInfo.cs (modified) (2 diffs)
-
Eraser/Program.ConsoleProgram.cs (modified) (1 diff)
-
Eraser/Settings.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/CodeReview/Eraser.Util/ConsoleWindow.cs
r1600 r1770 30 30 /// object. 31 31 /// </summary> 32 public class ConsoleWindow : IDisposable32 public sealed class ConsoleWindow : IDisposable 33 33 { 34 34 public ConsoleWindow() -
branches/eraser6/CodeReview/Eraser.Util/Security.cs
r1745 r1770 146 146 } 147 147 148 p ublicvoid Dispose(bool disposing)148 private void Dispose(bool disposing) 149 149 { 150 150 if (disposing) -
branches/eraser6/CodeReview/Eraser.Util/VolumeInfo.cs
r1745 r1770 716 716 } 717 717 718 public class VolumeLock : IDisposable718 public sealed class VolumeLock : IDisposable 719 719 { 720 720 internal VolumeLock(FileStream stream) … … 745 745 746 746 [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "disposing")] 747 void Dispose(bool disposing)747 private void Dispose(bool disposing) 748 748 { 749 749 //Flush the contents of the buffer to disk since after we unlock the volume -
branches/eraser6/CodeReview/Eraser/Program.ConsoleProgram.cs
r1580 r1770 72 72 } 73 73 74 p ublicvoid Dispose(bool disposing)74 protected virtual void Dispose(bool disposing) 75 75 { 76 76 //Flush the buffered output to the console -
branches/eraser6/CodeReview/Eraser/Settings.cs
r1768 r1770 40 40 /// Registry-based storage backing for the Settings class. 41 41 /// </summary> 42 private class RegistrySettings : Manager.Settings, IDisposable42 private sealed class RegistrySettings : Manager.Settings, IDisposable 43 43 { 44 44 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.
