Dropping unused swift class

This commit is contained in:
meeh
2018-10-11 16:49:51 +00:00
parent 8b2c3de795
commit 51cbd8ef87

View File

@@ -1,32 +0,0 @@
//
// I2PSubprocess.swift
// I2PLauncher
//
// Created by Mikal Villa on 18/09/2018.
// Copyright © 2018 The I2P Project. All rights reserved.
//
import Foundation
protocol I2PSubprocess {
var subprocessPath: String? { get set }
var arguments: String? { get set }
var timeWhenStarted: Date? { get set }
func findJava();
}
extension I2PSubprocess {
func toString() -> String {
let jp = self.subprocessPath!
let args = self.arguments!
var presentation:String = "I2PSubprocess[ cmd="
presentation += jp
presentation += " , args="
presentation += args
presentation += "]"
return presentation
}
}