(String path, int fileFormat)
| 665 | } |
| 666 | |
| 667 | public void updateImagePlus(String path, int fileFormat) { |
| 668 | if (imp==null || fi==null) |
| 669 | return; |
| 670 | if (name==null && path!=null) { |
| 671 | File f = new File(path); |
| 672 | directory = f.getParent() + File.separator; |
| 673 | name = f.getName(); |
| 674 | } |
| 675 | updateImp(fi, fileFormat); |
| 676 | } |
| 677 | |
| 678 | private void updateImp(FileInfo fi, int fileFormat) { |
| 679 | imp.changes = false; |
no test coverage detected