From 6bcea7919afb2148ecbfaf2e45dcdf1be7161361 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Mon, 21 Sep 2026 15:43:15 -0400 Subject: [PATCH] refactor(engine): remove unused stripe engine hook --- OpenNest.Engine/Fill/StripeFiller.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/OpenNest.Engine/Fill/StripeFiller.cs b/OpenNest.Engine/Fill/StripeFiller.cs index 912e945..6fa3300 100644 --- a/OpenNest.Engine/Fill/StripeFiller.cs +++ b/OpenNest.Engine/Fill/StripeFiller.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; @@ -27,13 +26,6 @@ public class StripeFiller /// public bool CompleteStripesOnly { get; set; } - /// - /// Factory to create the engine used for filling the remnant strip. - /// Defaults to NestEngineRegistry.Create (uses the user's selected engine). - /// - public Func CreateRemnantEngine { get; set; } = - NestEngineRegistry.Create; - public StripeFiller(FillContext context, NestDirection primaryAxis) { _context = context;