(String name)
| 256 | } |
| 257 | |
| 258 | @AstroImageJ(reason = "Increase condition from 5 to 10", modified = true) |
| 259 | private boolean noExtension(String name) { |
| 260 | if (name==null) return false; |
| 261 | int dotIndex = name.indexOf("."); |
| 262 | return dotIndex==-1 || (name.length()-dotIndex)>10; |
| 263 | } |
| 264 | |
| 265 | /** Returns the selected directory. */ |
| 266 | public String getDirectory() { |
no test coverage detected