From 13aff1d7b4f36af6632c697d08c357e6f7c2284d Mon Sep 17 00:00:00 2001 From: Jan Vennemann Date: Mon, 19 Nov 2018 19:45:23 +0200 Subject: [PATCH] fix(ios): typo in JSValue type (#10477) --- iphone/Classes/KrollContext.h | 2 +- iphone/Classes/KrollContext.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iphone/Classes/KrollContext.h b/iphone/Classes/KrollContext.h index 18b21919f5b..c617c4a4085 100644 --- a/iphone/Classes/KrollContext.h +++ b/iphone/Classes/KrollContext.h @@ -205,7 +205,7 @@ KrollContext *GetKrollContext(TiContextRef context); */ @property (strong, nonatomic, nullable) NSArray *arguments; -- (instancetype)initWithCallback:(nonnull JSValue *)callback arguments:(nullable NSArray *)arguments; +- (instancetype)initWithCallback:(nonnull JSValue *)callback arguments:(nullable NSArray *)arguments; /** * The method that will be triggered when a timer fires. diff --git a/iphone/Classes/KrollContext.m b/iphone/Classes/KrollContext.m index df8a59bbdd9..30bef6cf0c7 100644 --- a/iphone/Classes/KrollContext.m +++ b/iphone/Classes/KrollContext.m @@ -1568,7 +1568,7 @@ @interface KrollTimerManager () @implementation KrollTimerTarget -- (instancetype)initWithCallback:(JSValue *)callback arguments:(NSArray *)arguments +- (instancetype)initWithCallback:(JSValue *)callback arguments:(NSArray *)arguments { self = [super init]; if (!self) {