From 295e5ed965ea2bd2d6658734df2a16acadcc257d Mon Sep 17 00:00:00 2001 From: Abhishek Banthia <8280282+n0shake@users.noreply.github.com> Date: Fri, 18 Mar 2022 23:22:09 -0400 Subject: [PATCH] Remove CommonStrings.. --- Clocker/Clocker/Utilities/CommonStrings.h | 34 ----------------------- Clocker/Clocker/Utilities/CommonStrings.m | 33 ---------------------- 2 files changed, 67 deletions(-) delete mode 100644 Clocker/Clocker/Utilities/CommonStrings.h delete mode 100644 Clocker/Clocker/Utilities/CommonStrings.m diff --git a/Clocker/Clocker/Utilities/CommonStrings.h b/Clocker/Clocker/Utilities/CommonStrings.h deleted file mode 100644 index baef60a..0000000 --- a/Clocker/Clocker/Utilities/CommonStrings.h +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright © 2015 Abhishek Banthia - -#import - -@interface CommonStrings : NSObject - -extern NSString *const CLEmptyString; -extern NSString *const CLDefaultPreferenceKey; -extern NSString *const CLTimezoneName; -extern NSString *const CLCustomLabel; -extern NSString *const CL24hourFormatSelectedKey; -extern NSString *const CLDragSessionKey; -extern NSString *const CLTimezoneID; -extern NSString *const CLPlaceIdentifier; -extern NSString *const CLRelativeDateKey; -extern NSString *const CLThemeKey; -extern NSString *const CLShowDayInMenu; -extern NSString *const CLShowDateInMenu; -extern NSString *const CLShowPlaceInMenu; -extern NSString *const CLDisplayFutureSliderKey; -extern NSString *const CLStartAtLogin; -extern NSString *const CLShowAppInForeground; -extern NSString *const CLSunriseSunsetTime; -extern NSString *const CLLocationSearchURL; -extern NSString *const CLShowSecondsInMenubar; -extern NSString *const CLUserFontSizePreference; -extern NSString *const CLShowUpcomingEventView; -extern NSString *const CLShowAllDayEventsInUpcomingView; -extern NSString *const CLShowMeetingInMenubar; -extern NSString *const CLTruncateTextLength; -extern NSString *const CLFutureSliderRange; -extern NSString *const CLSelectedCalendars; - -@end diff --git a/Clocker/Clocker/Utilities/CommonStrings.m b/Clocker/Clocker/Utilities/CommonStrings.m deleted file mode 100644 index f62f20c..0000000 --- a/Clocker/Clocker/Utilities/CommonStrings.m +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright © 2015 Abhishek Banthia - -#import "CommonStrings.h" - -@implementation CommonStrings - -NSString *const CLEmptyString = @""; -NSString *const CLDefaultPreferenceKey = @"defaultPreferences"; -NSString *const CLTimezoneName = @"formattedAddress"; -NSString *const CLPlaceIdentifier = @"place_id"; -NSString *const CLTimezoneID = @"timezoneID"; -NSString *const CLCustomLabel = @"customLabel"; -NSString *const CL24hourFormatSelectedKey = @"is24HourFormatSelected"; -NSString *const CLDragSessionKey = @"public.text"; -NSString *const CLRelativeDateKey = @"relativeDate"; -NSString *const CLThemeKey = @"defaultTheme"; -NSString *const CLDisplayFutureSliderKey = @"displayFutureSlider"; -NSString *const CLShowDayInMenu = @"showDay"; -NSString *const CLShowDateInMenu = @"showDate"; -NSString *const CLShowPlaceInMenu = @"showPlaceName"; -NSString *const CLStartAtLogin = @"startAtLogin"; -NSString *const CLShowAppInForeground = @"displayAppAsForegroundApp"; -NSString *const CLSunriseSunsetTime = @"showSunriseSetTime"; -NSString *const CLShowSecondsInMenubar = @"showSeconds"; -NSString *const CLUserFontSizePreference = @"userFontSize"; -NSString *const CLShowUpcomingEventView = @"ShowUpcomingEventView"; -NSString *const CLFutureSliderRange = @"sliderDayRange"; -NSString *const CLShowAllDayEventsInUpcomingView = @"showAllDayEventsInUpcomingView"; -NSString *const CLShowMeetingInMenubar = @"showMeetingInfoInMenubar"; -NSString *const CLTruncateTextLength = @"truncateTextLength"; -NSString *const CLSelectedCalendars = @"SelectedCalendars"; - -@end