Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
mherrmann committed Feb 18, 2022
1 parent cf176e2 commit 7daa9ab
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions browser/mac/su_updater.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
#ifndef BRAVE_BROWSER_MAC_SU_UPDATER_H_
#define BRAVE_BROWSER_MAC_SU_UPDATER_H_

#if defined(__OBJC__)

#import <Foundation/Foundation.h>

@interface SUUpdateDriver;
Expand All @@ -19,9 +17,9 @@

@interface SUUpdater : NSObject

@property (strong) SUUpdateDriver *driver;
@property(strong) SUUpdateDriver* driver; // NOLINT

+ (SUUpdater *)sharedUpdater;
+ (SUUpdater*)sharedUpdater; // NOLINT

- (void)checkForUpdates:(id)sender;
- (void)setDelegate:(id)delegate;
Expand All @@ -35,6 +33,4 @@

@end

#endif // __OBJC__

#endif // BRAVE_BROWSER_MAC_SU_UPDATER_H_

0 comments on commit 7daa9ab

Please sign in to comment.