summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java
diff options
context:
space:
mode:
authorAbhishek Koneru <akoneru@redhat.com>2012-07-05 10:22:37 -0400
committerAde Lee <alee@redhat.com>2012-07-10 13:39:11 -0400
commita3c83b5f63c9ced5c527cb3b9306d390c3d192ec (patch)
treebd96ea7b91ff93c4823bc1416ed311b0b75a15fc /base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java
parent90b781662d18e8336e99421734f9aad4b524d44e (diff)
downloadpki-a3c83b5f63c9ced5c527cb3b9306d390c3d192ec.tar.gz
pki-a3c83b5f63c9ced5c527cb3b9306d390c3d192ec.tar.xz
pki-a3c83b5f63c9ced5c527cb3b9306d390c3d192ec.zip
SE_BAD_FIELD, MIGHT_IGNORE , STATIC_INNER_CLASS
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();
}
}
}