Remove useless comments

This commit is contained in:
Gary Gregory 2024-07-26 18:43:36 -04:00
parent 7b7de5ffe1
commit 5a249d8da9
2 changed files with 0 additions and 6 deletions

View File

@ -46,8 +46,6 @@ public class HashSetvBitSetTest extends AbstractLangTest {
} }
return result; return result;
} }
// --- utility methods
private static int[] extractIndices(final HashSet<Integer> coll) { private static int[] extractIndices(final HashSet<Integer> coll) {
final int[] result = new int[coll.size()]; final int[] result = new int[coll.size()];
int i = 0; int i = 0;

View File

@ -58,8 +58,6 @@ public class ExtendedMessageFormatTest extends AbstractLangTest {
throw new UnsupportedOperationException(); throw new UnsupportedOperationException();
} }
} }
// ------------------------ Test Format Factories ---------------
/** /**
* {@link FormatFactory} implementation for lower case format. * {@link FormatFactory} implementation for lower case format.
*/ */
@ -324,8 +322,6 @@ public class ExtendedMessageFormatTest extends AbstractLangTest {
assertEquals(emf.format(new Object[] {"there", 3, "great"}), "Hi there, got 3, GREAT!"); assertEquals(emf.format(new Object[] {"there", 3, "great"}), "Hi there, got 3, GREAT!");
} }
// ------------------------ Test Formats ------------------------
/** /**
* Test equals() and hashCode(). * Test equals() and hashCode().
*/ */