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 /toolkit/test | |
parent | 1e6f0b2d8b35f856637eedf91729e522fcc633e8 (diff) |
java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
Diffstat (limited to 'toolkit/test')
-rw-r--r-- | toolkit/test/accessibility/SimpleOffice.java | 2 | ||||
-rw-r--r-- | toolkit/test/accessibility/ov/StateSetView.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/test/accessibility/SimpleOffice.java b/toolkit/test/accessibility/SimpleOffice.java index 634169141f71..134e0d29fa5b 100644 --- a/toolkit/test/accessibility/SimpleOffice.java +++ b/toolkit/test/accessibility/SimpleOffice.java @@ -86,7 +86,7 @@ public class SimpleOffice xModel = UnoRuntime.queryInterface( XModel.class, xComponent); } - catch (java.lang.NullPointerException e) + catch (NullPointerException e) { MessageArea.println ("caught exception while loading " + URL + " : " + e); diff --git a/toolkit/test/accessibility/ov/StateSetView.java b/toolkit/test/accessibility/ov/StateSetView.java index a2a7c2632f01..82a39f7b2c58 100644 --- a/toolkit/test/accessibility/ov/StateSetView.java +++ b/toolkit/test/accessibility/ov/StateSetView.java @@ -185,7 +185,7 @@ public static class StateSetAllView AffineTransform aTransform = g.getTransform (); g.setColor (aTextColor); int y = aWidgetArea.y+aWidgetArea.height - 12; - double nTextRotation = -0.9;//-java.lang.Math.PI/2; + double nTextRotation = -0.9;//-Math.PI/2; double nScale = 0.6; // Create a shape for the boxes. |