summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-21 15:18:05 +0200
committerNoel Grandin <noel@peralex.com>2015-10-21 15:26:31 +0200
commitb8f0a48ccfc09b7df5a6c550e4ac695b67539f1d (patch)
tree13ed7749e79ff5a0e6741fd0d0d75449c8e16728 /qadevOOo/tests/java
parentb5cde3be257343bdb381d2e36e882907974d6913 (diff)
cid#1327135 UrF: Unread field
Change-Id: I21a03af98b60592fb5d11c57c69cf605b51ad273
Diffstat (limited to 'qadevOOo/tests/java')
-rw-r--r--qadevOOo/tests/java/ifc/awt/_XComboBox.java22
1 files changed, 4 insertions, 18 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XComboBox.java b/qadevOOo/tests/java/ifc/awt/_XComboBox.java
index e487f9829285..37bf4e324233 100644
--- a/qadevOOo/tests/java/ifc/awt/_XComboBox.java
+++ b/qadevOOo/tests/java/ifc/awt/_XComboBox.java
@@ -52,17 +52,10 @@ public class _XComboBox 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 disposing(com.sun.star.lang.EventObject e) {}
+ public void actionPerformed(com.sun.star.awt.ActionEvent e) {}
}
/**
@@ -70,17 +63,10 @@ public class _XComboBox extends MultiMethodTest {
*/
protected static class TestItemListener
implements com.sun.star.awt.XItemListener {
- public boolean disposingCalled = false;
- public boolean itemStateChangedCalled = false;
- public void disposing(com.sun.star.lang.EventObject e) {
- disposingCalled = true;
- }
-
- public void itemStateChanged(com.sun.star.awt.ItemEvent e) {
- itemStateChangedCalled = true;
- }
+ public void disposing(com.sun.star.lang.EventObject e) {}
+ public void itemStateChanged(com.sun.star.awt.ItemEvent e) {}
}
private final TestActionListener actionListener = new TestActionListener();
private final TestItemListener itemListener = new TestItemListener();