(String address)
| 203 | } |
| 204 | |
| 205 | static String getEmailDomain(String address) { |
| 206 | if (address == null) |
| 207 | return null; |
| 208 | |
| 209 | int at = address.indexOf('@'); |
| 210 | if (at > 0) |
| 211 | return address.substring(at + 1); |
| 212 | |
| 213 | return null; |
| 214 | } |
| 215 | |
| 216 | static @NonNull |
| 217 | Uri guessScheme(@NonNull Uri uri) { |
no test coverage detected