MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getString

Method getString

ij/src/main/java/ij/plugin/FITS_Reader.java:1520–1526  ·  view source on GitHub ↗
(int length)

Source from the content-addressed store, hash-verified

1518 }
1519
1520 String getString(int length) throws IOException {
1521 byte[] b = new byte[length];
1522 f.readFully(b);
1523 if (IJ.debugMode)
1524 IJ.log(new String(b));
1525 return new String(b);
1526 }
1527
1528 int getInteger(String s) {
1529 s = s.substring(10, 30);

Callers 1

getInfoMethod · 0.95

Calls 2

logMethod · 0.95
readFullyMethod · 0.65

Tested by

no test coverage detected