Skip to content

Commit 7daa9ab

Browse files
committed
Fix lint error
1 parent cf176e2 commit 7daa9ab

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

browser/mac/su_updater.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
#ifndef BRAVE_BROWSER_MAC_SU_UPDATER_H_
77
#define BRAVE_BROWSER_MAC_SU_UPDATER_H_
88

9-
#if defined(__OBJC__)
10-
119
#import <Foundation/Foundation.h>
1210

1311
@interface SUUpdateDriver;
@@ -19,9 +17,9 @@
1917

2018
@interface SUUpdater : NSObject
2119

22-
@property (strong) SUUpdateDriver *driver;
20+
@property(strong) SUUpdateDriver* driver; // NOLINT
2321

24-
+ (SUUpdater *)sharedUpdater;
22+
+ (SUUpdater*)sharedUpdater; // NOLINT
2523

2624
- (void)checkForUpdates:(id)sender;
2725
- (void)setDelegate:(id)delegate;
@@ -35,6 +33,4 @@
3533

3634
@end
3735

38-
#endif // __OBJC__
39-
4036
#endif // BRAVE_BROWSER_MAC_SU_UPDATER_H_

0 commit comments

Comments
 (0)