diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj
index 4f6413ae..9c7227b9 100644
--- a/src/Numerics/Numerics.csproj
+++ b/src/Numerics/Numerics.csproj
@@ -120,7 +120,6 @@
-
diff --git a/src/Numerics/Optimization/Implementation/NullObjectiveFunction.cs b/src/Numerics/Optimization/Implementation/NullObjectiveFunction.cs
deleted file mode 100644
index a279a620..00000000
--- a/src/Numerics/Optimization/Implementation/NullObjectiveFunction.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-using MathNet.Numerics.LinearAlgebra;
-
-namespace MathNet.Numerics.Optimization.Implementation
-{
- public class NullObjectiveFunction : BaseObjectiveFunction
- {
- public NullObjectiveFunction(Vector point)
- : base(false, false)
- {
- Point = point;
- }
-
- protected override void SetValue()
- {
- throw new NotImplementedException();
- }
-
- protected override void SetGradient()
- {
- throw new NotImplementedException();
- }
-
- protected override void SetHessian()
- {
- throw new NotImplementedException();
- }
-
- public override IObjectiveFunction Fork()
- {
- throw new NotImplementedException();
- }
- }
-}