9a430efbe7
Objective-c `@end` doesn't need a semicolon, however KMM exported header
file, for instance:
```
__attribute__((swift_name("KotlinIterator")))
@protocol MyProjectKotlinIterator
@required
- (BOOL)hasNext __attribute__((swift_name("hasNext()")));
- (id _Nullable)next __attribute__((swift_name("next()")));
@end;
```
This creates problems with some code checkers that will not expect it
there, so it seems best to remove it.
10 lines
166 B
Objective-C
10 lines
166 B
Objective-C
#import <Foundation/NSObject.h>
|
|
#import <Foundation/NSDate.h>
|
|
#import <Foundation/NSUUID.h>
|
|
|
|
@interface MyClass1 : NSObject
|
|
@end
|
|
|
|
@interface MyClass2 : NSObject
|
|
@end
|