@@ -21,7 +21,7 @@ public extension IRCCommand {
2121 * The parser validates the argument counts etc and throws exceptions on
2222 * unexpected input.
2323 */
24- public init ( _ command: String , arguments: [ String ] ) throws {
24+ init ( _ command: String , arguments: [ String ] ) throws {
2525 typealias Error = IRCParserError
2626
2727 func expect( argc: Int ) throws {
@@ -255,7 +255,7 @@ public extension IRCCommand {
255255 * The parser validates the argument counts etc and throws exceptions on
256256 * unexpected input.
257257 */
258- public init ( _ v: Int , arguments: [ String ] ) throws {
258+ init ( _ v: Int , arguments: [ String ] ) throws {
259259 if let code = IRCCommandCode ( rawValue: v) {
260260 self = . numeric( code, arguments)
261261 }
@@ -271,7 +271,7 @@ public extension IRCCommand {
271271 * The parser validates the argument counts etc and throws exceptions on
272272 * unexpected input.
273273 */
274- public init ( _ s: String , _ arguments: String ... ) throws {
274+ init ( _ s: String , _ arguments: String ... ) throws {
275275 try self . init ( s, arguments: arguments)
276276 }
277277
@@ -282,7 +282,7 @@ public extension IRCCommand {
282282 * The parser validates the argument counts etc and throws exceptions on
283283 * unexpected input.
284284 */
285- public init ( _ v: Int , _ arguments: String ... ) throws {
285+ init ( _ v: Int , _ arguments: String ... ) throws {
286286 try self . init ( v, arguments: arguments)
287287 }
288288}
0 commit comments