Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/AstroImageJ/astroimagej
/ getInteger
Method
getInteger
ij/src/main/java/ij/plugin/FITS_Reader.java:1528–1532 ·
view source on GitHub ↗
(String s)
Source
from the content-addressed store, hash-verified
1526
}
1527
1528
int
getInteger(String s) {
1529
s = s.substring(10, 30);
1530
s = s.trim();
1531
return
Integer.parseInt(s);
1532
}
1533
1534
double parseDouble(String s) throws NumberFormatException {
1535
return
Double.parseDouble(s);
Callers
nothing calls this directly
Calls
3
substring
Method · 0.80
parseInt
Method · 0.80
trim
Method · 0.45
Tested by
no test coverage detected