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

Merge pull request #2017 from huntersman/patch-1

删除代码中多余的括号
This commit is contained in:
Guide 2023-05-16 20:26:46 +08:00 committed by GitHub
commit e297b4dcf5
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 以进行删除