Skip to content

Commit f7fda97

Browse files
Merge pull request #305 from ehuynh/stable
remove split string extension from being public
2 parents 0710dc2 + 5eaab4f commit f7fda97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/HttpRouter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ open class HttpRouter {
134134

135135
extension String {
136136

137-
public func split(_ separator: Character) -> [String] {
137+
func split(_ separator: Character) -> [String] {
138138
return self.split { $0 == separator }.map(String.init)
139139
}
140140

0 commit comments

Comments
 (0)