测试 JDK 9 的字符串压缩

This commit is contained in:
YuCheng Hu 2022-07-05 10:15:52 -04:00
parent b9bf30f350
commit c6df8af1e0
2 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,11 @@ import java.util.stream.IntStream;
import static java.util.stream.Collectors.toList;
/**
* Java 9 String Compact testing
* <p>
* <p><a href="https://www.ossez.com/t/java-9-string/14024">https://www.ossez.com/t/java-9-string/14024</a></p>
*/
public class CompactStringDemo {
public static void main(String[] args) {

View File

@ -9,7 +9,7 @@ import static org.assertj.core.api.Assertions.assertThat;
/**
* Java Password by using String or Char array
* <p>
* * <p><a href="https://www.ossez.com/t/java-char-array-string/14015">https://www.ossez.com/t/java-char-array-string/14015</a></p>
* <p><a href="https://www.ossez.com/t/java-char-array-string/14015">https://www.ossez.com/t/java-char-array-string/14015</a></p>
*/
public class PasswordStoreExamplesUnitTest {