From 8dfb1b8094879eba8256534849ec1e2755339794 Mon Sep 17 00:00:00 2001 From: Abdullah Selek Date: Fri, 4 Aug 2017 11:01:20 +0200 Subject: [PATCH 1/2] Remove extra empty spaces inside Default Protocols --- .../Default/___FILEBASENAME___Protocols.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Module VIPER.xctemplate/Default/___FILEBASENAME___Protocols.swift b/Module VIPER.xctemplate/Default/___FILEBASENAME___Protocols.swift index cbd3d6b..e034829 100644 --- a/Module VIPER.xctemplate/Default/___FILEBASENAME___Protocols.swift +++ b/Module VIPER.xctemplate/Default/___FILEBASENAME___Protocols.swift @@ -22,11 +22,11 @@ protocol ___FILEBASENAMEASIDENTIFIER___PresenterProtocol: class { //MARK: Interactor - protocol ___FILEBASENAMEASIDENTIFIER___InteractorProtocol: class { - var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set } + var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set } } //MARK: View - protocol ___FILEBASENAMEASIDENTIFIER___ViewProtocol: class { - var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set } + var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set } } From fbb1c51c9b9b40e753bcc5cd741a4049a76e1765 Mon Sep 17 00:00:00 2001 From: Abdullah Selek Date: Fri, 4 Aug 2017 11:02:21 +0200 Subject: [PATCH 2/2] Remove extra empty spaces inside InputOutput Protocols --- .../InputOutput/___FILEBASENAME___Protocols.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Module VIPER.xctemplate/InputOutput/___FILEBASENAME___Protocols.swift b/Module VIPER.xctemplate/InputOutput/___FILEBASENAME___Protocols.swift index 35a6643..230f7c7 100644 --- a/Module VIPER.xctemplate/InputOutput/___FILEBASENAME___Protocols.swift +++ b/Module VIPER.xctemplate/InputOutput/___FILEBASENAME___Protocols.swift @@ -28,7 +28,7 @@ protocol ___FILEBASENAMEASIDENTIFIER___InteractorOutputProtocol: class { protocol ___FILEBASENAMEASIDENTIFIER___InteractorInputProtocol: class { - var presenter: ___FILEBASENAMEASIDENTIFIER___InteractorOutputProtocol? { get set } + var presenter: ___FILEBASENAMEASIDENTIFIER___InteractorOutputProtocol? { get set } /* Presenter -> Interactor */ } @@ -36,7 +36,7 @@ protocol ___FILEBASENAMEASIDENTIFIER___InteractorInputProtocol: class { //MARK: View - protocol ___FILEBASENAMEASIDENTIFIER___ViewProtocol: class { - var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set } + var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set } /* Presenter -> ViewController */ }