summaryrefslogtreecommitdiff
path: root/vcl/qa/complex
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-19 14:18:44 +0200
committerNoel Grandin <noel@peralex.com>2014-08-19 14:57:16 +0200
commit56ef5533fc1bce2134721ae64d4d6c18a3526a7a (patch)
treeeafaa8b3c9c7fd4bbeb03fdb1be091f94c870953 /vcl/qa/complex
parent1e6f0b2d8b35f856637eedf91729e522fcc633e8 (diff)
java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
Diffstat (limited to 'vcl/qa/complex')
-rw-r--r--vcl/qa/complex/memCheck/CheckMemoryUsage.java2
-rw-r--r--vcl/qa/complex/persistent_window_states/DocumentHandle.java4
-rw-r--r--vcl/qa/complex/persistent_window_states/PersistentWindowTest.java4
3 files changed, 5 insertions, 5 deletions
diff --git a/vcl/qa/complex/memCheck/CheckMemoryUsage.java b/vcl/qa/complex/memCheck/CheckMemoryUsage.java
index 94d369e2ae59..9483825ea546 100644
--- a/vcl/qa/complex/memCheck/CheckMemoryUsage.java
+++ b/vcl/qa/complex/memCheck/CheckMemoryUsage.java
@@ -500,7 +500,7 @@ public class CheckMemoryUsage /* extends ComplexTestCase */
{
Thread.sleep(milliSeconds);
}
- catch (java.lang.InterruptedException e)
+ catch (InterruptedException e)
{ // ignore
}
}
diff --git a/vcl/qa/complex/persistent_window_states/DocumentHandle.java b/vcl/qa/complex/persistent_window_states/DocumentHandle.java
index daeef05d0aba..dc45ab10cc7d 100644
--- a/vcl/qa/complex/persistent_window_states/DocumentHandle.java
+++ b/vcl/qa/complex/persistent_window_states/DocumentHandle.java
@@ -88,7 +88,7 @@ public class DocumentHandle {
try {
Thread.sleep(10000);
}
- catch(java.lang.InterruptedException e) {}
+ catch(InterruptedException e) {}
xWin = xFrame.getContainerWindow();
xWin.addWindowListener(wl);
@@ -147,7 +147,7 @@ public class DocumentHandle {
try {
Thread.sleep(3000);
}
- catch(java.lang.InterruptedException e) {}
+ catch(InterruptedException e) {}
return wl.resizedTrigger;
}
}
diff --git a/vcl/qa/complex/persistent_window_states/PersistentWindowTest.java b/vcl/qa/complex/persistent_window_states/PersistentWindowTest.java
index b35bd6b7c14d..03329b05adb0 100644
--- a/vcl/qa/complex/persistent_window_states/PersistentWindowTest.java
+++ b/vcl/qa/complex/persistent_window_states/PersistentWindowTest.java
@@ -288,7 +288,7 @@ public class PersistentWindowTest
{
connection.setUp();
}
- catch (java.lang.InterruptedException e)
+ catch (InterruptedException e)
{
fail("can't connect.");
}
@@ -305,7 +305,7 @@ public class PersistentWindowTest
{
connection.tearDown();
}
- catch (java.lang.InterruptedException e)
+ catch (InterruptedException e)
{
fail("can't disconnect.");
}