Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Operations/Operation.cs')
-rw-r--r--UVtools.Core/Operations/Operation.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.Core/Operations/Operation.cs b/UVtools.Core/Operations/Operation.cs
index 166446d..b7f7955 100644
--- a/UVtools.Core/Operations/Operation.cs
+++ b/UVtools.Core/Operations/Operation.cs
@@ -354,7 +354,7 @@ namespace UVtools.Core.Operations
SelectLastLayer();
break;
default:
- throw new ArgumentOutOfRangeException();
+ throw new NotImplementedException();
}
}
@@ -507,7 +507,7 @@ namespace UVtools.Core.Operations
return result;
}
- public virtual void Dispose() { }
+ public virtual void Dispose() { GC.SuppressFinalize(this); }
#endregion
#region Static Methods