Skip to content

Commit 6f3f2c9

Browse files
authored
去除空格,优化格式
1 parent db72d11 commit 6f3f2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/concurrent/java-concurrent-questions-02.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class Singleton {
6060
private Singleton() {
6161
}
6262

63-
public static Singleton getUniqueInstance() {
63+
public static Singleton getUniqueInstance() {
6464
//先判断对象是否已经实例过,没有实例化过才进入加锁代码
6565
if (uniqueInstance == null) {
6666
//类对象加锁

0 commit comments

Comments
 (0)