Skip to content

Commit 025c735

Browse files
committed
see 12/19 log
1 parent dba5f97 commit 025c735

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package com.blankj.utilcode.util.reflect;
2+
3+
public class PrivateConstructors {
4+
5+
public final String string;
6+
7+
private PrivateConstructors() {
8+
this(null);
9+
}
10+
11+
private PrivateConstructors(String string) {
12+
this.string = string;
13+
}
14+
}

0 commit comments

Comments
 (0)