summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper')
-rw-r--r--qadevOOo/runner/helper/OfficeProvider.java2
-rw-r--r--qadevOOo/runner/helper/OfficeWatcher.java2
-rw-r--r--qadevOOo/runner/helper/ProcessHandler.java4
-rw-r--r--qadevOOo/runner/helper/UnoProvider.java2
4 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/runner/helper/OfficeProvider.java b/qadevOOo/runner/helper/OfficeProvider.java
index c33bfd7c54b3..1f0643d2fc9f 100644
--- a/qadevOOo/runner/helper/OfficeProvider.java
+++ b/qadevOOo/runner/helper/OfficeProvider.java
@@ -492,7 +492,7 @@ public class OfficeProvider implements AppProvider
dbg("the Office has " + closeTime / 1000 + " seconds for closing...");
Thread.sleep(closeTime);
}
- catch (java.lang.InterruptedException e)
+ catch (InterruptedException e)
{
}
}
diff --git a/qadevOOo/runner/helper/OfficeWatcher.java b/qadevOOo/runner/helper/OfficeWatcher.java
index 2e48887c5d9f..624e5c0238d1 100644
--- a/qadevOOo/runner/helper/OfficeWatcher.java
+++ b/qadevOOo/runner/helper/OfficeWatcher.java
@@ -102,7 +102,7 @@ public class OfficeWatcher extends Thread implements share.Watcher {
private void shortWait(int timeOut) {
try {
OfficeWatcher.sleep(timeOut);
- } catch (java.lang.InterruptedException ie) {
+ } catch (InterruptedException ie) {
}
}
diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java
index 85accac84cd8..49e4814257a7 100644
--- a/qadevOOo/runner/helper/ProcessHandler.java
+++ b/qadevOOo/runner/helper/ProcessHandler.java
@@ -448,7 +448,7 @@ public class ProcessHandler
{
Thread.sleep(1000 * counter); // 5000
}
- catch (java.lang.InterruptedException e)
+ catch (InterruptedException e)
{
}
try
@@ -809,7 +809,7 @@ public class ProcessHandler
{
sleep(1000);
}
- catch(java.lang.InterruptedException e)
+ catch(InterruptedException e)
{
// interrupt flag is set back to 'not interrupted' :-(
}
diff --git a/qadevOOo/runner/helper/UnoProvider.java b/qadevOOo/runner/helper/UnoProvider.java
index 3f6c743f97e6..5c4ae5ac5b6c 100644
--- a/qadevOOo/runner/helper/UnoProvider.java
+++ b/qadevOOo/runner/helper/UnoProvider.java
@@ -77,7 +77,7 @@ public class UnoProvider implements AppProvider {
try {
Thread.sleep(1000);
}
- catch(java.lang.InterruptedException e) {}
+ catch(InterruptedException e) {}
return true;
}