From c523ba716f07922a43c716499b96df71e468534d Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Fri, 9 Aug 2019 21:31:11 +0200 Subject: [PATCH] code style --- MacPass/MPAutotypeDaemon.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MacPass/MPAutotypeDaemon.m b/MacPass/MPAutotypeDaemon.m index ace24103..3f73ca1a 100644 --- a/MacPass/MPAutotypeDaemon.m +++ b/MacPass/MPAutotypeDaemon.m @@ -209,7 +209,8 @@ static MPAutotypeDaemon *_sharedInstance; NSPredicate *filterPredicate = [NSPredicate predicateWithBlock:^BOOL(id _Nonnull evaluatedObject, NSDictionary * _Nullable bindings) { MPDocument *document = evaluatedObject; - return !document.encrypted;}]; + return !document.encrypted; + }]; NSArray *unlockedDocuments = [documents filteredArrayUsingPredicate:filterPredicate]; /* We look for all unlocked documents, if all open documents are locked, we pop the front most and try to search again */ if(unlockedDocuments.count == 0) {