Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Remove extra empty spaces inside Protocols #11

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ protocol ___FILEBASENAMEASIDENTIFIER___InteractorOutputProtocol: class {

protocol ___FILEBASENAMEASIDENTIFIER___InteractorInputProtocol: class {

var presenter: ___FILEBASENAMEASIDENTIFIER___InteractorOutputProtocol? { get set }
var presenter: ___FILEBASENAMEASIDENTIFIER___InteractorOutputProtocol? { get set }

/* Presenter -> Interactor */
}

//MARK: View -
protocol ___FILEBASENAMEASIDENTIFIER___ViewProtocol: class {

var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set }
var presenter: ___FILEBASENAMEASIDENTIFIER___PresenterProtocol? { get set }

/* Presenter -> ViewController */
}