summaryrefslogtreecommitdiff
path: root/toolkit/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-04 16:12:55 +0200
committerNoel Grandin <noel@peralex.com>2014-08-05 11:31:49 +0200
commitf124688cfdfbe96ff2be5ab44ea5023725548146 (patch)
tree4874bf2b2504979b9733f200e05b68034c7eaefe /toolkit/qa
parent36a74fe54a0cd99372ea646af31ce41ac5ec5b08 (diff)
java: remove various unused variables
Change-Id: Id9f30938f594cb6fe73bf40adfffa65ec1b42cd1
Diffstat (limited to 'toolkit/qa')
-rw-r--r--toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java24
1 files changed, 9 insertions, 15 deletions
diff --git a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java
index 96c53c0db117..6de3a08485ec 100644
--- a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java
+++ b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java
@@ -653,7 +653,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextRange(-1, chCount - 1): ");
- String txtRange = oObj.getTextRange(-1, chCount - 1);
+ oObj.getTextRange(-1, chCount - 1);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -663,7 +663,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextRange(0, chCount + 1): ");
- String txtRange = oObj.getTextRange(0, chCount + 1);
+ oObj.getTextRange(0, chCount + 1);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -673,7 +673,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextRange(chCount+1, -1): ");
- String txtRange = oObj.getTextRange(chCount+1, -1);
+ oObj.getTextRange(chCount+1, -1);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -701,8 +701,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextAtIndex(-1, AccessibleTextType.PARAGRAPH):");
- TextSegment txt =
- oObj.getTextAtIndex(-1, AccessibleTextType.PARAGRAPH);
+ oObj.getTextAtIndex(-1, AccessibleTextType.PARAGRAPH);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -716,8 +715,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextAtIndex(chCount+1," +
" AccessibleTextType.PARAGRAPH):");
- TextSegment txt = oObj.getTextAtIndex(chCount + 1,
- AccessibleTextType.PARAGRAPH);
+ oObj.getTextAtIndex(chCount + 1, AccessibleTextType.PARAGRAPH);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -775,8 +773,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextBeforeIndex(-1, AccessibleTextType.PARAGRAPH):");
- TextSegment txt = oObj.getTextBeforeIndex(-1,
- AccessibleTextType.PARAGRAPH);
+ oObj.getTextBeforeIndex(-1, AccessibleTextType.PARAGRAPH);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -791,8 +788,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextBeforeIndex(chCount+1, " +
"AccessibleTextType.PARAGRAPH):");
- TextSegment txt = oObj.getTextBeforeIndex(chCount + 1,
- AccessibleTextType.PARAGRAPH);
+ oObj.getTextBeforeIndex(chCount + 1, AccessibleTextType.PARAGRAPH);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -865,8 +861,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextBehindIndex(-1, AccessibleTextType.PARAGRAPH):");
- TextSegment txt = oObj.getTextBehindIndex(-1,
- AccessibleTextType.PARAGRAPH);
+ oObj.getTextBehindIndex(-1, AccessibleTextType.PARAGRAPH);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
@@ -881,8 +876,7 @@ public class _XAccessibleText {
try {
System.out.println("getTextBehindIndex(chCount+1, " +
"AccessibleTextType.PARAGRAPH):");
- TextSegment txt = oObj.getTextBehindIndex(chCount + 1,
- AccessibleTextType.PARAGRAPH);
+ oObj.getTextBehindIndex(chCount + 1, AccessibleTextType.PARAGRAPH);
System.out.println("Exception was expected");
res &= false;
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {