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 /sc | |
parent | 1e6f0b2d8b35f856637eedf91729e522fcc633e8 (diff) |
java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/complex/cellRanges/CheckXCellRangesQuery.java | 2 | ||||
-rw-r--r-- | sc/qa/complex/dataPilot/CheckDataPilot.java | 2 | ||||
-rw-r--r-- | sc/qa/complex/sc/CalcRTL.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java b/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java index 77dad34a522f..5b0c9a77de75 100644 --- a/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java +++ b/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java @@ -130,7 +130,7 @@ public class CheckXCellRangesQuery /* extends ComplexTestCase */ { } catch (com.sun.star.lang.DisposedException e) { worked = false; System.out.println("Document already disposed"); - } catch (java.lang.NullPointerException e) { + } catch (NullPointerException e) { worked = false; System.out.println("Couldn't get XCloseable"); } diff --git a/sc/qa/complex/dataPilot/CheckDataPilot.java b/sc/qa/complex/dataPilot/CheckDataPilot.java index aee79e1d0891..efa3aee6b6f3 100644 --- a/sc/qa/complex/dataPilot/CheckDataPilot.java +++ b/sc/qa/complex/dataPilot/CheckDataPilot.java @@ -357,7 +357,7 @@ public class CheckDataPilot { } catch (com.sun.star.lang.DisposedException e) { worked = false; System.out.println("Document already disposed"); - } catch (java.lang.NullPointerException e) { + } catch (NullPointerException e) { worked = false; System.out.println("Couldn't get XCloseable"); } diff --git a/sc/qa/complex/sc/CalcRTL.java b/sc/qa/complex/sc/CalcRTL.java index 586d01505fe5..0a1e15d5968d 100644 --- a/sc/qa/complex/sc/CalcRTL.java +++ b/sc/qa/complex/sc/CalcRTL.java @@ -241,7 +241,7 @@ public class CalcRTL /* extends ComplexTestCase */ } catch (com.sun.star.lang.DisposedException e) { worked = false; System.out.println("Document already disposed"); - } catch (java.lang.NullPointerException e) { + } catch (NullPointerException e) { worked = false; System.out.println("Couldn't get XCloseable"); } |