We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75de84b commit 6794f72Copy full SHA for 6794f72
src/org/infinity/resource/key/ResourceTreeFolder.java
@@ -213,8 +213,12 @@ public synchronized boolean retainAll(Collection<?> c) {
213
}
214
215
/**
216
- * Fixes build on JDK 21+, where both List and SortedSet have a default reversed() method that clashes
+ * @apiNote Stub method required to meet JDK 21 requirements which introduces their own {@code reversed()} method
217
+ * to the {@link SortedSet} and {@link List} interfaces.
218
+ *
219
+ * TODO: Remove when upgrading source compatibility to JDK 21+
220
*/
221
+ @SuppressWarnings("unused")
222
public SortedListSet<T> reversed() {
223
throw new UnsupportedOperationException();
224
0 commit comments