summaryrefslogtreecommitdiff
path: root/qadevOOo/tests
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-21 15:20:38 +0200
committerNoel Grandin <noel@peralex.com>2015-10-21 15:26:35 +0200
commitf7799477ddf650c6adf14bf8c77d0c3e31abed41 (patch)
tree48573b0f25f2b2c0cf7bb115cc6bd99e0d24a464 /qadevOOo/tests
parent971069f41daff6d56c524e3050b33f88502ff11d (diff)
cid#1327138 UrF: Unread field
Change-Id: I3454f75c9662c76203dd7a2a5e74827bf6d9baf8
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/ifc/awt/_XRadioButton.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XRadioButton.java b/qadevOOo/tests/java/ifc/awt/_XRadioButton.java
index 5bec1f848417..a8757cd1c80b 100644
--- a/qadevOOo/tests/java/ifc/awt/_XRadioButton.java
+++ b/qadevOOo/tests/java/ifc/awt/_XRadioButton.java
@@ -46,8 +46,6 @@ public class _XRadioButton extends MultiMethodTest {
* Listener implementation which sets flags on appropriate method calls
*/
protected static class TestItemListener implements com.sun.star.awt.XItemListener {
- public boolean disposingCalled = false ;
- public boolean itemStateChangedCalled = false ;
private final java.io.PrintWriter log;
public TestItemListener(java.io.PrintWriter log) {
@@ -55,12 +53,10 @@ public class _XRadioButton extends MultiMethodTest {
}
public void disposing(com.sun.star.lang.EventObject e) {
- disposingCalled = true ;
log.println(" disposing was called.") ;
}
public void itemStateChanged(com.sun.star.awt.ItemEvent e) {
- itemStateChangedCalled = true ;
log.println(" itemStateChanged was called.") ;
}