(Path path, String directory, String fileName)
| 81 | private boolean isMeasurementsTable; |
| 82 | |
| 83 | private FitsReader(Path path, String directory, String fileName) throws IOException { |
| 84 | FitsFactory.setAllowHeaderRepairs(true); |
| 85 | this(new Fits(path.toFile()), directory, fileName); |
| 86 | } |
| 87 | |
| 88 | private FitsReader(Fits fits, String directory, String fileName) throws IOException { |
| 89 | this.directory = directory; |
nothing calls this directly
no test coverage detected