summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-19 16:00:53 +0200
committerNoel Grandin <noel@peralex.com>2015-01-12 08:36:17 +0200
commit4bf4e3d40778051f1f886c47dd2b2bef82acf1e5 (patch)
treeaba474c9bd3b06154c1c480742a237f83ca7983f /qadevOOo/runner/util
parent40e48e81af597baca421630693d671130f774f57 (diff)
java: no need to instantiate the AccessibilityTools object
since all of it's methods and fields are static. Change-Id: Ia2b652969489c5a21e01a35cda65c6e84346aac0
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r--qadevOOo/runner/util/AccessibilityTools.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/qadevOOo/runner/util/AccessibilityTools.java b/qadevOOo/runner/util/AccessibilityTools.java
index a0f1612845d0..5b75b6db681a 100644
--- a/qadevOOo/runner/util/AccessibilityTools.java
+++ b/qadevOOo/runner/util/AccessibilityTools.java
@@ -34,6 +34,8 @@ public class AccessibilityTools {
public static XAccessible SearchedAccessible = null;
private static boolean debug = false;
+ private AccessibilityTools() {}
+
public static XAccessible getAccessibleObject(XInterface xObject) {
return UnoRuntime.queryInterface(XAccessible.class, xObject);
}