summaryrefslogtreecommitdiff
path: root/bean/com/sun/star/comp/beans/CallWatchThread.java
diff options
context:
space:
mode:
Diffstat (limited to 'bean/com/sun/star/comp/beans/CallWatchThread.java')
-rw-r--r--bean/com/sun/star/comp/beans/CallWatchThread.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bean/com/sun/star/comp/beans/CallWatchThread.java b/bean/com/sun/star/comp/beans/CallWatchThread.java
index b9de0a826384..45cecbc367e8 100644
--- a/bean/com/sun/star/comp/beans/CallWatchThread.java
+++ b/bean/com/sun/star/comp/beans/CallWatchThread.java
@@ -52,7 +52,7 @@ public class CallWatchThread extends Thread
}
public void cancel()
- throws java.lang.InterruptedException
+ throws InterruptedException
{
dbgPrint( "CallWatchThread(" + this + ".cancel(" + aTag + ")" );
if ( aWatchedThread != null && aWatchedThread != Thread.currentThread() )
@@ -63,7 +63,7 @@ public class CallWatchThread extends Thread
}
public synchronized void restart()
- throws java.lang.InterruptedException
+ throws InterruptedException
{
dbgPrint( "CallWatchThread(" + this + ".restart(" + aTag + ")" );
if ( aWatchedThread != null && aWatchedThread != Thread.currentThread() )
@@ -89,7 +89,7 @@ public class CallWatchThread extends Thread
{
wait( nTimeout );
}
- catch ( java.lang.InterruptedException aExc )
+ catch ( InterruptedException aExc )
{
bAlive = false;
}