| 52 | } |
| 53 | |
| 54 | String Url::getScheme() const |
| 55 | { |
| 56 | if(Scheme.length() == 0) { |
| 57 | return URI_SCHEME_DEFAULT; |
| 58 | } |
| 59 | String s = Scheme; |
| 60 | s.toLowerCase(); |
| 61 | return s; |
| 62 | } |
| 63 | |
| 64 | int Url::getDefaultPort(const String& scheme) |
| 65 | { |
nothing calls this directly
no test coverage detected