Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rachguo authored and rachguo committed Nov 22, 2023
1 parent 13e7ee4 commit e7f22ef
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@

@interface AppDelegate : NSObject <NSApplicationDelegate>


@end
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,20 @@

@interface AppDelegate ()


@end

@implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
- (void)applicationDidFinishLaunching:(NSNotification*)aNotification {
// Insert code here to initialize your application
}


- (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
- (void)applicationWillTerminate:(NSNotification*)aNotification {
// Insert code here to tear down your application
}


- (BOOL)applicationSupportsSecureRestorableState:(NSApplication *)app {
return YES;
- (BOOL)applicationSupportsSecureRestorableState:(NSApplication*)app {
return YES;
}


@end
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

#import <Cocoa/Cocoa.h>

int main(int argc, const char * argv[]) {
@autoreleasepool {
// Setup code that might create autoreleased objects goes here.
}
return NSApplicationMain(argc, argv);
int main(int argc, const char* argv[]) {
@autoreleasepool {
// Setup code that might create autoreleased objects goes here.
}
return NSApplicationMain(argc, argv);
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@ @interface macos_package_testUITests : XCTestCase
@implementation macos_package_testUITests

- (void)setUp {
// Put setup code here. This method is called before the invocation of each test method in the class.
// Put setup code here. This method is called before the invocation of each test method in the class.

// In UI tests it is usually best to stop immediately when a failure occurs.
self.continueAfterFailure = NO;
// In UI tests it is usually best to stop immediately when a failure occurs.
self.continueAfterFailure = NO;

// In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
// In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
}

- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

- (NSString*)getFilePath {
Expand Down

0 comments on commit e7f22ef

Please sign in to comment.