diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-19 14:18:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-19 14:57:16 +0200 |
commit | 56ef5533fc1bce2134721ae64d4d6c18a3526a7a (patch) | |
tree | eafaa8b3c9c7fd4bbeb03fdb1be091f94c870953 /bean/com/sun/star/beans | |
parent | 1e6f0b2d8b35f856637eedf91729e522fcc633e8 (diff) |
java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
Diffstat (limited to 'bean/com/sun/star/beans')
-rw-r--r-- | bean/com/sun/star/beans/LocalOfficeWindow.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bean/com/sun/star/beans/LocalOfficeWindow.java b/bean/com/sun/star/beans/LocalOfficeWindow.java index 9283b013a43e..03a4bd4b90ca 100644 --- a/bean/com/sun/star/beans/LocalOfficeWindow.java +++ b/bean/com/sun/star/beans/LocalOfficeWindow.java @@ -164,7 +164,7 @@ public class LocalOfficeWindow CallWatchThread aCallWatchThread = new CallWatchThread( 500 ); setVisible(false); try { aCallWatchThread.cancel(); } - catch ( java.lang.InterruptedException aExc ) + catch ( InterruptedException aExc ) {} // ignore } @@ -270,7 +270,7 @@ public class LocalOfficeWindow } private void cancel() - throws java.lang.InterruptedException + throws InterruptedException { aWatchedThread = null; stop(); @@ -285,7 +285,7 @@ public class LocalOfficeWindow while ( aWatchedThread != null ) { try { sleep( nTimeout ); } - catch ( java.lang.InterruptedException aExc ) + catch ( InterruptedException aExc ) {} //synchronized |