Browse Source

Remove unused structure member handler factory - Part 2

CPKreuz 11 months ago
parent
commit
836dc98818
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/PixiEditor/ViewModels/Document/DocumentViewModel.cs

+ 0 - 4
src/PixiEditor/ViewModels/Document/DocumentViewModel.cs

@@ -210,8 +210,6 @@ internal partial class DocumentViewModel : PixiObservableObject, IDocument
     IDocumentOperations IDocument.Operations => Operations;
     ITransformHandler IDocument.TransformHandler => TransformViewModel;
     ILineOverlayHandler IDocument.LineToolOverlayHandler => LineToolOverlayViewModel;
-    //public ILayerHandlerFactory LayerHandlerFactory { get; }
-    //public IFolderHandlerFactory FolderHandlerFactory { get; }
     IReferenceLayerHandler IDocument.ReferenceLayerHandler => ReferenceLayerViewModel;
     IAnimationHandler IDocument.AnimationHandler => AnimationDataViewModel;
 
@@ -225,8 +223,6 @@ internal partial class DocumentViewModel : PixiObservableObject, IDocument
         EventInlet = new DocumentEventsModule(this, Internals);
         Operations = new DocumentOperationsModule(this, Internals);
 
-        //LayerHandlerFactory = new LayerHandlerFactory(this);
-        //FolderHandlerFactory = new FolderHandlerFactory(this);
         AnimationDataViewModel = new(this, Internals);
 
         NodeGraph = new NodeGraphViewModel(this, Internals);