Determine if the character is allowed in the scheme of a URI. See RFC 2396, Section 3.1 @param c The character to test @return true if the character is allowed, otherwise false
(char c)
| 78 | * false} |
| 79 | */ |
| 80 | private static boolean isSchemeChar(char c) { |
| 81 | return Character.isLetterOrDigit(c) || c == '+' || c == '-' || c == '.'; |
| 82 | } |
| 83 | |
| 84 | |
| 85 | /** |
no outgoing calls
no test coverage detected