--- old/src/hotspot/os/windows/os_windows.cpp 2019-03-01 02:51:52.653357211 -0500 +++ new/src/hotspot/os/windows/os_windows.cpp 2019-03-01 02:51:51.843310010 -0500 @@ -923,13 +923,9 @@ } jlong os::javaTimeMillis() { - if (UseFakeTimers) { - return fake_time++; - } else { - FILETIME wt; - GetSystemTimeAsFileTime(&wt); - return windows_to_java_time(wt); - } + FILETIME wt; + GetSystemTimeAsFileTime(&wt); + return windows_to_java_time(wt); } void os::javaTimeSystemUTC(jlong &seconds, jlong &nanos) { --- old/src/hotspot/share/runtime/globals.hpp 2019-03-01 02:51:55.188504921 -0500 +++ new/src/hotspot/share/runtime/globals.hpp 2019-03-01 02:51:54.377457665 -0500 @@ -651,9 +651,6 @@ develop(bool, BreakAtWarning, false, \ "Execute breakpoint upon encountering VM warning") \ \ - develop(bool, UseFakeTimers, false, \ - "Tell whether the VM should use system time or a fake timer") \ - \ product(ccstr, NativeMemoryTracking, "off", \ "Native memory tracking options") \ \