Skip to content

Commit e297b4d

Browse files
authored
Merge pull request Snailclimb#2017 from huntersman/patch-1
删除代码中多余的括号
2 parents 71aa80f + a1172a5 commit e297b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/new-features/java17.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ RandomGeneratorFactory<RandomGenerator> l128X256MixRandom = RandomGeneratorFacto
5151
// 使用时间戳作为随机数种子
5252
RandomGenerator randomGenerator = l128X256MixRandom.create(System.currentTimeMillis());
5353
// 生成随机数
54-
randomGenerator.nextInt(10));
54+
randomGenerator.nextInt(10);
5555
```
5656

5757
## JEP 398:弃用 Applet API 以进行删除

0 commit comments

Comments
 (0)