From 67edaac1c91182d97ab9867c95991f59fda04833 Mon Sep 17 00:00:00 2001 From: Lyubo Marinov Date: Wed, 6 Sep 2017 09:55:35 -0500 Subject: [PATCH] [RN] Coding style --- ios/sdk/src/JitsiMeetViewDelegate.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ios/sdk/src/JitsiMeetViewDelegate.h b/ios/sdk/src/JitsiMeetViewDelegate.h index 2757fbb90..ea2dc5b7f 100644 --- a/ios/sdk/src/JitsiMeetViewDelegate.h +++ b/ios/sdk/src/JitsiMeetViewDelegate.h @@ -25,7 +25,7 @@ * The {@code data} dictionary contains an "error" key describing the error and * a {@code url} key with the conference URL. */ -- (void) conferenceFailed:(NSDictionary *)data; +- (void)conferenceFailed:(NSDictionary *)data; /** * Called when a conference was joined. @@ -33,7 +33,7 @@ * The {@code data} dictionary contains a {@code url} key with the conference * URL. */ -- (void) conferenceJoined:(NSDictionary *)data; +- (void)conferenceJoined:(NSDictionary *)data; /** * Called when a conference was left. @@ -41,7 +41,7 @@ * The {@code data} dictionary contains a {@code url} key with the conference * URL. */ -- (void) conferenceLeft:(NSDictionary *)data; +- (void)conferenceLeft:(NSDictionary *)data; /** * Called before a conference is joined. @@ -49,7 +49,7 @@ * The {@code data} dictionary contains a {@code url} key with the conference * URL. */ -- (void) conferenceWillJoin:(NSDictionary *)data; +- (void)conferenceWillJoin:(NSDictionary *)data; /** * Called before a conference is left. @@ -57,13 +57,13 @@ * The {@code data} dictionary contains a {@code url} key with the conference * URL. */ -- (void) conferenceWillLeave:(NSDictionary *)data; +- (void)conferenceWillLeave:(NSDictionary *)data; /** * Called when loading the main configuration file fails. * * The {@code data} dictionary contains an {@code error} key with the error. */ -- (void) loadConfigError:(NSDictionary *)data; +- (void)loadConfigError:(NSDictionary *)data; @end