i wish all javadoc a very die

This commit is contained in:
petrak@ 2023-04-24 13:38:26 -05:00
parent efa986f3c3
commit ac1c16c2e7

View file

@ -68,8 +68,10 @@ public abstract class Iota {
}
/**
* This method is called to determine whether the iota is above the max serialisation depth/serialisation count limits. It should return every "iota" that is a subelement of this iota.
* For example, if you implemented a Map<Iota, Iota>, then it should be an iterable over the keys *and* values of the map. If you implemented a typed List<Double> iota for some reason, it would
* This method is called to determine whether the iota is above the max serialisation depth/serialisation count
* limits. It should return every "iota" that is a subelement of this iota.
* For example, if you implemented a Map&lt;Iota, Iota&gt;, then it should be an iterable over the keys *and*
* values of the map. If you implemented a typed List&lt;Double&gt; iota for some reason, it would
* probably be a good idea to supply an iterable over those doubles mapped to double iotas.
*/
public @Nullable Iterable<Iota> subIotas() {