Fix several warnings.

This commit is contained in:
Brent Simmons
2025-04-25 08:46:34 -07:00
parent d4fa99b913
commit 93e76f617b
8 changed files with 11 additions and 9 deletions

View File

@@ -8,8 +8,8 @@
import Foundation
public protocol TreeControllerDelegate: class {
public protocol TreeControllerDelegate: AnyObject {
func treeController(treeController: TreeController, childNodesFor: Node) -> [Node]?
}