Skip to content

Commit

Permalink
fix some trailing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
rmottola committed Nov 17, 2023
1 parent fb358c3 commit 08411ea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Source/NSAccessibilityCustomRotor.m
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ - (instancetype)initWithItemLoadingToken: (id<NSAccessibilityLoadingToken>)token
return nil;
}

- (id<NSAccessibilityElement>) targetElement;
- (id<NSAccessibilityElement>) targetElement
{
return nil;
}
Expand Down
2 changes: 1 addition & 1 deletion Source/NSCollectionView.m
Original file line number Diff line number Diff line change
Expand Up @@ -1987,7 +1987,7 @@ - (BOOL) allowsEmptySelection
return _allowsEmptySelection;
}

- (void) setAllowsEmptySelection: (BOOL)flag;
- (void) setAllowsEmptySelection: (BOOL)flag
{
_allowsEmptySelection = flag;
}
Expand Down
2 changes: 1 addition & 1 deletion Source/NSCollectionViewGridLayout.m
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ - (void) setMaximumNumberOfRows: (NSUInteger)maxRows
_maximumNumberOfRows = maxRows;
}

- (NSUInteger) maximumNumberOfRows;
- (NSUInteger) maximumNumberOfRows
{
return _maximumNumberOfRows;
}
Expand Down
2 changes: 1 addition & 1 deletion Source/NSFontDescriptor.m
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ - (id) initWithCoder: (NSCoder*)aDecoder
return self;
}

- (void) dealloc;
- (void) dealloc
{
RELEASE(_attributes);
[super dealloc];
Expand Down
2 changes: 1 addition & 1 deletion Source/NSTextFinder.m
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ - (BOOL) validateAction: (NSTextFinderAction)op
withTextView: nil];
}

- (void)cancelFindIndicator;
- (void)cancelFindIndicator
{
}

Expand Down

0 comments on commit 08411ea

Please sign in to comment.