More fixes

-Fixed: More javadoc fixes
-Fixed: BaseIntIterableTest no longer uses a deprecated function
This commit is contained in:
2022-04-08 00:13:51 +02:00
parent 2810a6f952
commit 3ffb001c73
4 changed files with 12 additions and 3 deletions
@@ -50,6 +50,10 @@ public interface COMPARATOR extends Comparator<CLASS_TYPE>
{
COMPARATOR original;
/**
* default constructor
* @param original that is going to be reversed
*/
public Reversed(COMPARATOR original) {
this.original = original;
}