Remove trailing whitespace introduced in r203028.

llvm-svn: 203588
This commit is contained in:
Bob Wilson 2014-03-11 17:17:16 +00:00
parent ef3d680093
commit 3ca7904fea
2 changed files with 6 additions and 6 deletions

View File

@ -1540,12 +1540,12 @@ static bool SuperClassImplementsProperty(ObjCInterfaceDecl *IDecl,
bool SuperClassImplementsSetter = false;
if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly)
SuperClassImplementsSetter = true;
while (IDecl->getSuperClass()) {
ObjCInterfaceDecl *SDecl = IDecl->getSuperClass();
if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName()))
SuperClassImplementsGetter = true;
if (!SuperClassImplementsSetter && SDecl->getInstanceMethod(Prop->getSetterName()))
SuperClassImplementsSetter = true;
if (SuperClassImplementsGetter && SuperClassImplementsSetter)

View File

@ -202,10 +202,10 @@ typedef NSObject<Fooing> FooObject;
@protocol r16089191Protocol
@property (readonly) NSURL *fileURL;
@property (copy) NSURL *file;
@property (copy) NSURL *fileSys;
@property (copy) NSURL *fileLog;
@property (copy) NSURL *fileKerl;
@property (copy) NSURL *file;
@property (copy) NSURL *fileSys;
@property (copy) NSURL *fileLog;
@property (copy) NSURL *fileKerl;
@end
@interface SubClass : SuperClass <r16089191Protocol>