From b5cde3be257343bdb381d2e36e882907974d6913 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 21 Oct 2015 15:16:48 +0200 Subject: [PATCH] cid#1327134 UrF: Unread field Change-Id: Ib6d801b11515259481d4235db9d7a39d5891a289 --- qadevOOo/tests/java/ifc/awt/_XCheckBox.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/qadevOOo/tests/java/ifc/awt/_XCheckBox.java b/qadevOOo/tests/java/ifc/awt/_XCheckBox.java index a675f3551c45..2262cc241683 100644 --- a/qadevOOo/tests/java/ifc/awt/_XCheckBox.java +++ b/qadevOOo/tests/java/ifc/awt/_XCheckBox.java @@ -46,16 +46,12 @@ public class _XCheckBox 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 itemStateChanged(com.sun.star.awt.ItemEvent e) {} } TestItemListener listener = new TestItemListener() ; short state = -1 ;