Archived
1

Cleaned Imports

This commit is contained in:
Kim Wittenburg
2014-11-08 01:05:08 +01:00
parent 139a75f816
commit f4f924bd71
80 changed files with 237 additions and 164 deletions

View File

@@ -7,17 +7,20 @@
//
#import "MPExpression.h"
#import "MPExpressionElement.h"
#import "MPFunction.h"
#import "MPRangePath.h"
#import "NSIndexPath+MPAdditions.h"
#import "MPException.h"
#import "MPExpressionTokenizer.h"
#import "MPTokenStream.h"
#import "MPToken.h"
#import "MPExpressionTree.h"
#import "NSIndexPath+MPAdditions.h"
NSString *const MPIllegalElementExceptionElementKey = @"MPIllegalElementExceptionElementKey";
NSString *const MPMathKitErrorDomain = @"MPMathKitErrorDomain";
NSString *const MPExpressionPathErrorKey = @"MPExpressionPathErrorKey";
@@ -93,7 +96,7 @@ NSString *const MPExpressionPathErrorKey = @"MPExpressionPathErrorKey";
{
for (id element in elements) {
if (![element conformsToProtocol:@protocol(MPExpressionElement)]) {
@throw [NSException exceptionWithName:MPIllegalElementException
@throw [NSException exceptionWithName:@"MPIllegalElementException"
reason:@"Elements must conform to the MPExpressionElement protocol."
userInfo:@{MPIllegalElementExceptionElementKey: element}];
}