Fork me on GitHub

Tag List Report

The following document contains the listing of user tags found in the code. Below is the summary of the occurrences per tag.

Tag Class Total number of occurrences Tag strings used by tag class
@todo 0 @todo
TODO 111 TODO

Each tag is detailed below:

TODO

Number of occurrences found in the code: 111

nom.tam.fits.BadData Line
Auto-generated method stub 66
Auto-generated method stub 72
Auto-generated method stub 77
nom.tam.fits.BasicHDU Line
this should become an abstract method for 2.0. Prior to that we provide a default implementation for API back-compatibility reasons for any 3rd-party HDU implementations. To warn that this should be ovewritten, we'll log a warning... 960
nom.tam.fits.DeferredTest Line
Auto-generated method stub 109
Auto-generated method stub 115
Auto-generated method stub 120
nom.tam.fits.Fits Line
Make private 677
make private 1066
For DataOutputStream this one conflicts with write(DataOutput). However once that one is deprecated, this one can be exposed safely. public void write(OutputStream os) throws IOException, FitsException { write(new FitsOutputStream(os)); } 1565
nom.tam.fits.FitsHeap Line
--No comment-- 54
nom.tam.fits.FitsUtil Line
AK: argument should be RandomAccess instead of Closeable, since that's the only type we actually handle... 669
nom.tam.fits.Header Line
retire? 2688
nom.tam.fits.HeaderCard Line
we never call with null type and non-null value internally, so this is dead code here... if (aType == null && aValue != null) { throw new HeaderCardException("Null type for value: [" + sanitize(aValue) + "]"); } 530
nom.tam.fits.HeaderCardFormatter Line
We prevent the creation of cards with longer values, so the following check is dead code here. } else if (value.length() > available) { throw new LongValueException(available, card.getKey(), card.getValue()); 220
We check for null before calling, so this is dead code here... if (comment == null) { return 0; } 241
We check for null before calling, so this is dead code here... if (text == null) { return 0; } 463
Again we prevent this ever occuring before we reach this point, so it is dead code... if (available < 1) { return 0; } 498
We already know we cannot show the whole string on one line, so this is dead code... if (from + i >= text.length()) { // Reached end of string; break; } 510
nom.tam.fits.HeaderCardParser Line
HeaderCard never calls this with a null argument, so the check below is dead code here... if (line == null) { throw new IllegalArgumentException("Cannot parse null string"); } 130
We never call this with null locally, so the following check is dead code here... if (value == null) { return Boolean.class; } 520
nom.tam.fits.compression.ReadWriteProvidedCompressedImageTest Line
--No comment-- 1148
nom.tam.fits.compression.algorithm.quant.QuantizeProcessor Line
this is done very inefficient and should be refactored! 79
nom.tam.fits.header.FitsHeaderImpl Line
Auto-generated constructor stub 71
nom.tam.fits.header.HierarchicalGrouping Line
find description? 48
find description? 52
nom.tam.fits.test.ChecksumTest Line
This test fails in the CI for some reason, but not locally. 145
nom.tam.image.StandardImageTiler Line
When streaming out to an ArrayDataOutput, use this tiler's base class to determine the element size. 387
If that is not sufficient, then maybe it needs to be passed in? 389
jenkinsd 2022.12.21 390
nom.tam.image.compression.hdu.CompressedTableBlackBoxTest Line
also cfitsio can not uncompress this, mail to bill 22.7.2016 173
also cfitsio can not uncompress this, mail to bill 22.7.2016 179
add fpack files to blackbox images, and enable tests once fpack fixes its critical bugs. 189
nom.tam.image.compression.hdu.CompressedTableTest Line
Auto-generated constructor stub 565
nom.tam.image.compression.tile.TiledImageCompressionOperation Line
--No comment-- 440
nom.tam.util.DefaultMethodsTest Line
Auto-generated method stub 91
Auto-generated method stub 97
Auto-generated method stub 103
Auto-generated method stub 109
Auto-generated method stub 115
Auto-generated method stub 121
Auto-generated method stub 127
Auto-generated method stub 133
Auto-generated method stub 139
Auto-generated method stub 145
Auto-generated method stub 151
Auto-generated method stub 157
Auto-generated method stub 163
Auto-generated method stub 169
Auto-generated method stub 175
Auto-generated method stub 181
Auto-generated method stub 187
Auto-generated method stub 193
Auto-generated method stub 199
Auto-generated method stub 205
Auto-generated method stub 211
Auto-generated method stub 217
Auto-generated method stub 223
Auto-generated method stub 229
Auto-generated method stub 235
Auto-generated method stub 241
Auto-generated method stub 247
Auto-generated method stub 253
Auto-generated method stub 259
Auto-generated method stub 265
Auto-generated method stub 271
Auto-generated method stub 277
Auto-generated method stub 283
Auto-generated method stub 289
Auto-generated method stub 295
Auto-generated method stub 301
Auto-generated method stub 307
Auto-generated method stub 313
Auto-generated method stub 319
Auto-generated method stub 328
Auto-generated method stub 334
Auto-generated method stub 340
Auto-generated method stub 346
Auto-generated method stub 352
Auto-generated method stub 358
Auto-generated method stub 364
Auto-generated method stub 370
Auto-generated method stub 376
Auto-generated method stub 382
Auto-generated method stub 388
Auto-generated method stub 394
Auto-generated method stub 400
Auto-generated method stub 406
Auto-generated method stub 412
Auto-generated method stub 418
Auto-generated method stub 424
Auto-generated method stub 430
Auto-generated method stub 436
Auto-generated method stub 442
Auto-generated method stub 448
Auto-generated method stub 454
Auto-generated method stub 460
Auto-generated method stub 466
Auto-generated method stub 472
Auto-generated method stub 478
Auto-generated method stub 484
Auto-generated method stub 490
Auto-generated method stub 496
Auto-generated method stub 502
Auto-generated method stub 508
Auto-generated method stub 514
Auto-generated method stub 520
nom.tam.util.InputDecoder Line
Once the deprecated BufferDecoder is retired, this should become a private method of InputBuffer (with buf. prefixed removed below). 126
nom.tam.util.OutputEncoder Line
Once the deprecated {@link BufferEncoder} is retired, this should become a private method of OutputBuffer, with leading 'buf.' references stripped. 139
nom.tam.util.type.ElementType Line
handle big arrays differently by using memory mapped files. 310
nom.tam.util.type.PrimitiveTypes Line
Auto-generated constructor stub 89