From fbcb59d47a8864e079439de62ac748004e4c520d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 18 Sep 2016 21:18:41 -0400 Subject: [PATCH] A policy change trial: let the person above deal with any error. --- .../Clock Signal/Document Controller/DocumentController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSBindings/Mac/Clock Signal/Document Controller/DocumentController.swift b/OSBindings/Mac/Clock Signal/Document Controller/DocumentController.swift index 4625bdc50..b2c7d2e18 100644 --- a/OSBindings/Mac/Clock Signal/Document Controller/DocumentController.swift +++ b/OSBindings/Mac/Clock Signal/Document Controller/DocumentController.swift @@ -21,6 +21,6 @@ class DocumentController: NSDocumentController { } } - return try! super.makeDocument(withContentsOf: url, ofType: typeName) + return try super.makeDocument(withContentsOf: url, ofType: typeName) } }