summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-21 15:16:03 +0200
committerNoel Grandin <noel@peralex.com>2015-10-21 15:26:28 +0200
commit0220cdea886a5e7ba940ec0bbae94a58532c3095 (patch)
treef1e92ddb23d058f5f94584e52375370e29c95a64 /qadevOOo
parent7b9f288bfd601354c1fc2cd8250c20bd3c583c62 (diff)
cid#1327133 UrF: Unread field
Change-Id: Ie910cdc66c5f243f1ba5f4b855154277746a6195
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/awt/_XButton.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XButton.java b/qadevOOo/tests/java/ifc/awt/_XButton.java
index 444fcd591b68..fa5a8304613c 100644
--- a/qadevOOo/tests/java/ifc/awt/_XButton.java
+++ b/qadevOOo/tests/java/ifc/awt/_XButton.java
@@ -44,16 +44,12 @@ public class _XButton extends MultiMethodTest {
*/
protected static class TestActionListener implements com.sun.star.awt.XActionListener {
public boolean disposingCalled = false ;
- public boolean actionPerformedCalled = false ;
public void disposing(com.sun.star.lang.EventObject e) {
disposingCalled = true ;
}
- public void actionPerformed(com.sun.star.awt.ActionEvent e) {
- actionPerformedCalled = true ;
- }
-
+ public void actionPerformed(com.sun.star.awt.ActionEvent e) {}
}
TestActionListener listener = new TestActionListener() ;