diff --git a/CHANGELIST.md b/CHANGELIST.md
index 886873c7..b0a01990 100644
--- a/CHANGELIST.md
+++ b/CHANGELIST.md
@@ -22,6 +22,7 @@
- Invert using statement in dump environment
- Make options internal to dump environment
- Split constants files into component parts
+- Remove odd code from Result class
### 3.1.9a (2024-05-21)
diff --git a/MPF.Core/Data/Result.cs b/MPF.Core/Data/Result.cs
index 988ae30e..aefb2d81 100644
--- a/MPF.Core/Data/Result.cs
+++ b/MPF.Core/Data/Result.cs
@@ -5,7 +5,7 @@ namespace MPF.Core.Data
///
/// Generic success/failure result object, with optional message
///
- public class Result : System.EventArgs
+ public class Result : EventArgs
{
///
/// Internal representation of success
@@ -46,11 +46,6 @@ namespace MPF.Core.Data
/// String to add as a message
public static Result Failure(string? message) => new(false, message ?? string.Empty);
- internal static Result Success(object value)
- {
- throw new NotImplementedException();
- }
-
///
/// Results can be compared to boolean values based on the success value
///