(String address)
| 177 | } |
| 178 | |
| 179 | static String getEmailUser(String address) { |
| 180 | if (address == null) |
| 181 | return null; |
| 182 | |
| 183 | int at = address.indexOf('@'); |
| 184 | if (at > 0) |
| 185 | return address.substring(0, at); |
| 186 | |
| 187 | return null; |
| 188 | } |
| 189 | |
| 190 | static String getEmailExtra(String email) { |
| 191 | if (TextUtils.isEmpty(email)) |
no test coverage detected