From 182872c760d437556d606cc02c6b7c570667a715 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Fri, 12 Sep 2025 21:50:40 +0200 Subject: Add children --- QSThingsPlugin/Helpers/ThingsHelper.m | 9 --------- 1 file changed, 9 deletions(-) (limited to 'QSThingsPlugin/Helpers/ThingsHelper.m') diff --git a/QSThingsPlugin/Helpers/ThingsHelper.m b/QSThingsPlugin/Helpers/ThingsHelper.m index cc7267b..be54d8c 100644 --- a/QSThingsPlugin/Helpers/ThingsHelper.m +++ b/QSThingsPlugin/Helpers/ThingsHelper.m @@ -11,15 +11,6 @@ ThingsURLRoute const ThingsURLRouteAddProject = @"add-project"; @implementation ThingsHelper -+ (instancetype)sharedInstance { - static ThingsHelper *sharedInstance = nil; - static dispatch_once_t onceToken; - dispatch_once(&onceToken, ^{ - sharedInstance = [[self alloc] init]; - }); - return sharedInstance; -} - + (BOOL)requiresAuthentication:(ThingsURLRoute)route { if ([route isEqualToString:ThingsURLRouteSearch] || [route isEqualToString:ThingsURLRouteShow]) { return NO; -- cgit