Check this extension (no dots, please) against the list of valid extensions.
(String what)
| 955 | * extensions. |
| 956 | */ |
| 957 | public boolean validExtension(String what) { |
| 958 | String[] ext = getExtensions(); |
| 959 | for (int i = 0; i < ext.length; i++) { |
| 960 | if (ext[i].equals(what)) return true; |
| 961 | } |
| 962 | return false; |
| 963 | } |
| 964 | |
| 965 | |
| 966 | /** |
no test coverage detected