From 3567c7e86c35e36873d70102adc3ea68b3da3ecc Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Sun, 20 Oct 2024 14:39:43 +0200 Subject: [PATCH] Make Tab class final --- Model/Entities/Entities.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/Entities/Entities.swift b/Model/Entities/Entities.swift index 2aed88af..1704c8db 100644 --- a/Model/Entities/Entities.swift +++ b/Model/Entities/Entities.swift @@ -121,7 +121,7 @@ class OutlineItem: ObservableObject, Identifiable { } } -class Tab: NSManagedObject, Identifiable { +final class Tab: NSManagedObject, Identifiable { @NSManaged var created: Date @NSManaged var interactionState: Data? @NSManaged var lastOpened: Date