Changeset 186
- Timestamp:
- 3/10/2008 9:05:17 AM (5 years ago)
- Location:
- branches/eraser6
- Files:
-
- 2 edited
-
Eraser/TaskDataSelectionForm.cs (modified) (1 diff)
-
Manager/Method.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Eraser/TaskDataSelectionForm.cs
r181 r186 54 54 55 55 //And the methods list 56 Dictionary<Guid, ErasureMethod> methods = ErasureMethodManager.Get Methods();56 Dictionary<Guid, ErasureMethod> methods = ErasureMethodManager.GetAll(); 57 57 this.method.Items.Add(ErasureMethodManager.Default); 58 58 foreach (ErasureMethod method in methods.Values) -
branches/eraser6/Manager/Method.cs
r181 r186 101 101 public override void Erase(Stream strm, PRNG prng, OnProgress callback) 102 102 { 103 throw new NotImplementedException("The method or operation is not implemented."); 103 throw new NotImplementedException("The DefaultMethod class should never be " + 104 "used and should instead be replaced before execution!"); 104 105 } 105 106 } … … 118 119 /// </summary> 119 120 /// <returns>A mutable list, with an instance of each method.</returns> 120 public static Dictionary<Guid, ErasureMethod> Get Methods()121 public static Dictionary<Guid, ErasureMethod> GetAll() 121 122 { 122 123 lock (Globals.ErasureMethodManager.methods)
Note: See TracChangeset
for help on using the changeset viewer.
