From 88c643b6fec27eec436c8d138fee6346e92337d6 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:57 +0000 Subject: Remove upstream files and directories from vendor/lldb/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- .../test/lang/objc/objc-class-method/class.m | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m (limited to 'packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m') diff --git a/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m b/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m deleted file mode 100644 index 18a2c2729beae..0000000000000 --- a/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m +++ /dev/null @@ -1,24 +0,0 @@ -#import - -@interface Foo : NSObject -+(int) doSomethingWithString: (NSString *) string; --(int) doSomethingInstance: (NSString *) string; -@end - -@implementation Foo -+(int) doSomethingWithString: (NSString *) string -{ - NSLog (@"String is: %@.", string); - return [string length]; -} - --(int) doSomethingInstance: (NSString *)string -{ - return [Foo doSomethingWithString:string]; -} -@end - -int main() -{ - return 0; // Set breakpoint here. -} -- cgit v1.2.3