Skip to content

Commit 1ea910f

Browse files
committed
Change field visibility
1 parent 779f947 commit 1ea910f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickfixj-core/src/main/java/quickfix/SystemTime.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
*/
3333
public class SystemTime {
3434
public static final TimeZone UTC_TIMEZONE = TimeZone.getTimeZone("UTC");
35-
public static final Clock UTC_CLOCK = Clock.systemUTC();
35+
private static final Clock UTC_CLOCK = Clock.systemUTC();
3636

37-
public static final SystemTimeSource UTC = new SystemTimeSource() {
37+
static final SystemTimeSource UTC = new SystemTimeSource() {
3838
@Override
3939
public long getTime() {
4040
return System.currentTimeMillis();

0 commit comments

Comments
 (0)