Check this extension (no dots, please) against the list of valid extensions.
(String what)
| 752 | * extensions. |
| 753 | */ |
| 754 | public boolean validExtension(String what) { |
| 755 | String[] ext = getExtensions(); |
| 756 | for (String s : ext) { |
| 757 | if (s.equals(what)) return true; |
| 758 | } |
| 759 | return false; |
| 760 | } |
| 761 | |
| 762 | |
| 763 | /** |
no test coverage detected