Skip to content

Commit

Permalink
Fixed warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
kris2point0 committed Mar 22, 2016
1 parent 5cb5aff commit 745cc0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MIKMIDISynthesizerInstrument.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ - (BOOL)isEqual:(id)object
{
if (object == self) return YES;
if (![object isMemberOfClass:[self class]]) return NO;
if (!self.instrumentID == [object instrumentID]) return NO;
if (self.instrumentID != [object instrumentID]) return NO;
return [self.name isEqualToString:[object name]];
}

Expand Down

1 comment on commit 745cc0e

@armadsen
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you, Xcode 7.3!

Please sign in to comment.