fix comment

This commit is contained in:
Looly
2024-01-15 17:12:23 +08:00
parent 9c3dc22a37
commit 5567b4e3fc
2 changed files with 8 additions and 9 deletions

View File

@@ -30,7 +30,7 @@ public class UUIDTest {
final Set<String> set = new ConcurrentHashSet<>(100);
ThreadUtil.concurrencyTest(100, ()-> set.add(UUID.fastUUID().toString()));
Assertions.assertEquals(100, set.size());
Console.log(set);
//Console.log(set);
}