From 2d82619a528ebdf867f242c85ad626462609ba39 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 17 Dec 2014 11:35:04 +0200 Subject: java: static fields that should not be static Found by FindBugs. Change-Id: I223841f7bb8c515c9612322abc0b13e134385abd --- ucb/qa/complex/tdoc/_XComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ucb') diff --git a/ucb/qa/complex/tdoc/_XComponent.java b/ucb/qa/complex/tdoc/_XComponent.java index 13958ec51169..582b0d66904d 100644 --- a/ucb/qa/complex/tdoc/_XComponent.java +++ b/ucb/qa/complex/tdoc/_XComponent.java @@ -110,7 +110,7 @@ public class _XComponent { return true; } // finished _removeEventListener() - private static boolean disposed = false; + private boolean disposed = false; /** * Disposes the object and then check appropriate listeners were -- cgit