1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

删除代码中多余的括号

删除代码中多余的括号
This commit is contained in:
HunterChen 2023-05-16 16:12:50 +08:00 committed by GitHub
parent 21573992f6
commit a1172a520f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,7 @@ RandomGeneratorFactory<RandomGenerator> l128X256MixRandom = RandomGeneratorFacto
// 使用时间戳作为随机数种子
RandomGenerator randomGenerator = l128X256MixRandom.create(System.currentTimeMillis());
// 生成随机数
randomGenerator.nextInt(10));
randomGenerator.nextInt(10);
```
## JEP 398:弃用 Applet API 以进行删除