8240818: Remove colon from "JFR: Shutdown Hook" thread name

Reviewed-by: mgronlun
This commit is contained in:
Stefan Karlsson 2020-03-19 14:17:20 +01:00
parent b4e85913bf
commit 5695e59a72

@ -86,7 +86,7 @@ public final class PlatformRecorder {
startDiskMonitor();
activeRecordingEvent = EventType.getEventType(ActiveRecordingEvent.class);
activeSettingEvent = EventType.getEventType(ActiveSettingEvent.class);
shutdownHook = SecuritySupport.createThreadWitNoPermissions("JFR: Shutdown Hook", new ShutdownHook(this));
shutdownHook = SecuritySupport.createThreadWitNoPermissions("JFR Shutdown Hook", new ShutdownHook(this));
SecuritySupport.setUncaughtExceptionHandler(shutdownHook, new ShutdownHook.ExceptionHandler());
SecuritySupport.registerShutdownHook(shutdownHook);