summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-12-13 21:00:31 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-12-14 10:15:25 +0000
commit476924d473e054e4f279a8bd0594d6923f77434c (patch)
treec815f016a94ec95260391a21fa9400725fa5ea2b /qadevOOo
parent8293e4a3e8dd9034b10091dee5e7839d5cd54c6a (diff)
coverity#1327151 UrF: Unread field
Change-Id: Iea1398d6c261659843d060fb0128f7a404beafb7
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/awt/_XButton.java2
-rw-r--r--qadevOOo/tests/java/ifc/awt/_XCheckBox.java2
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XDispatch.java4
3 files changed, 0 insertions, 8 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XButton.java b/qadevOOo/tests/java/ifc/awt/_XButton.java
index fa5a8304613c..4cd43648147d 100644
--- a/qadevOOo/tests/java/ifc/awt/_XButton.java
+++ b/qadevOOo/tests/java/ifc/awt/_XButton.java
@@ -43,10 +43,8 @@ public class _XButton extends MultiMethodTest {
* Listener implementation which sets flags on appropriate method calls
*/
protected static class TestActionListener implements com.sun.star.awt.XActionListener {
- public boolean disposingCalled = false ;
public void disposing(com.sun.star.lang.EventObject e) {
- disposingCalled = true ;
}
public void actionPerformed(com.sun.star.awt.ActionEvent e) {}
diff --git a/qadevOOo/tests/java/ifc/awt/_XCheckBox.java b/qadevOOo/tests/java/ifc/awt/_XCheckBox.java
index 2262cc241683..06073680e8e8 100644
--- a/qadevOOo/tests/java/ifc/awt/_XCheckBox.java
+++ b/qadevOOo/tests/java/ifc/awt/_XCheckBox.java
@@ -45,10 +45,8 @@ public class _XCheckBox 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 void disposing(com.sun.star.lang.EventObject e) {
- disposingCalled = true ;
}
public void itemStateChanged(com.sun.star.awt.ItemEvent e) {}
diff --git a/qadevOOo/tests/java/ifc/frame/_XDispatch.java b/qadevOOo/tests/java/ifc/frame/_XDispatch.java
index e059e347e7d0..3cc536f7a331 100644
--- a/qadevOOo/tests/java/ifc/frame/_XDispatch.java
+++ b/qadevOOo/tests/java/ifc/frame/_XDispatch.java
@@ -57,7 +57,6 @@ public class _XDispatch extends MultiMethodTest {
*/
protected static class TestStatusListener implements
com.sun.star.frame.XStatusListener {
- public boolean disposingCalled = false ;
public boolean statusChangedCalled = false ;
private final java.io.PrintWriter log;
@@ -66,7 +65,6 @@ public class _XDispatch extends MultiMethodTest {
}
public void disposing(com.sun.star.lang.EventObject e) {
- disposingCalled = true ;
log.println(" disposing was called.") ;
}
@@ -87,7 +85,6 @@ public class _XDispatch extends MultiMethodTest {
*/
protected static class TestNotificationListener implements
com.sun.star.frame.XDispatchResultListener {
- public boolean disposingCalled = false ;
public boolean finishedDispatch = false ;
private final java.io.PrintWriter log;
@@ -96,7 +93,6 @@ public class _XDispatch extends MultiMethodTest {
}
public void disposing(com.sun.star.lang.EventObject e) {
- disposingCalled = true ;
log.println(" disposing was called.") ;
}