summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java')
-rw-r--r--base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java b/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java
index 40499577e..296aadea5 100644
--- a/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java
+++ b/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java
@@ -48,9 +48,6 @@ import com.netscape.certsrv.base.ISubsystem;
*/
public class ProfileSubsystem extends Frame implements ISubsystem, Runnable {
- /**
- *
- */
private static final long serialVersionUID = -7411549542009497317L;
private String mId = null;
private Thread mMonitoring = new Thread(this);
@@ -207,7 +204,8 @@ public class ProfileSubsystem extends Frame implements ISubsystem, Runnable {
updateThreadPanel();
// update every second
Thread.sleep(1000);
- } catch (Exception e) {
+ } catch (InterruptedException e) {
+ Thread.currentThread().interrupt();
}
}
}