From ced30868fddf0893cfaaafa6468efccdd335b42f Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Thu, 19 Oct 2023 15:15:21 -0400 Subject: [PATCH] fix --- .../eventlisteners/CentralRepositoryNotificationDialog.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/CentralRepositoryNotificationDialog.java b/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/CentralRepositoryNotificationDialog.java index 5c18c4235e..39ce238b2d 100755 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/CentralRepositoryNotificationDialog.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/CentralRepositoryNotificationDialog.java @@ -34,9 +34,8 @@ public class CentralRepositoryNotificationDialog { * application is running with a GUI. */ public static boolean shouldDisplay() { - return //Version.getBuildType() == Version.Type.RELEASE - //&& - RuntimeProperties.runningWithGUI(); + return Version.getBuildType() == Version.Type.RELEASE + && RuntimeProperties.runningWithGUI(); } /**