From cdec4282fbd2f19e84020dd1fc1e2ec785c76d42 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Tue, 04 Nov 2008 17:47:26 +0000
Subject: [PATCH] Fix for issue 3554 (Control Panel : Error displayed after deleting several entries).
---
opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/ControlCenterMainPane.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/ControlCenterMainPane.java b/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/ControlCenterMainPane.java
index 6ba7fc8..53d1da6 100644
--- a/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/ControlCenterMainPane.java
+++ b/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/ControlCenterMainPane.java
@@ -100,7 +100,7 @@
{
lastStatusStopped = true;
}
- else if (lastStatusStopped)
+ else if (lastStatusStopped && !ev.getNewDescriptor().isAuthenticated())
{
lastStatusStopped = false;
SwingUtilities.invokeLater(new Runnable()
--
Gitblit v1.10.0