From 213a31c7d5c11ca05fda666e7a697cc94df0d0f1 Mon Sep 17 00:00:00 2001 From: Leon Scroggins Date: Thu, 21 May 2009 16:49:32 -0700 Subject: [PATCH] Fix some Java mistakes found by FindBugs. Use Integer.valueOf() instead of new Integer() Eliminate unused fields in InvokeListBox Make FocusNode, HitTestRequest, and ExtendedZoomControls static inner classes. --- core/java/android/webkit/WebView.java | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 82f8a3d046946..66229294010d2 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -210,7 +210,7 @@ public class WebView extends AbsoluteLayout static final boolean DEBUG = false; static final boolean LOGV_ENABLED = DEBUG; - private class ExtendedZoomControls extends FrameLayout { + private static class ExtendedZoomControls extends FrameLayout { public ExtendedZoomControls(Context context, AttributeSet attrs) { super(context, attrs); LayoutInflater inflater = (LayoutInflater) @@ -564,7 +564,7 @@ public class WebView extends AbsoluteLayout public void onNewPicture(WebView view, Picture picture); } - public class HitTestResult { + public static class HitTestResult { /** * Default HitTestResult, where the target is unknown */ @@ -2859,7 +2859,7 @@ public class WebView extends AbsoluteLayout /** * Class representing the node which is focused. */ - private class FocusNode { + private static class FocusNode { public FocusNode() { mBounds = new Rect(); } @@ -4568,8 +4568,8 @@ public class WebView extends AbsoluteLayout HashMap arg = new HashMap(); arg.put("focusData", new WebViewCore.FocusData(mFocusData)); arg.put("replace", replace); - arg.put("start", new Integer(newStart)); - arg.put("end", new Integer(newEnd)); + arg.put("start", Integer.valueOf(newStart)); + arg.put("end", Integer.valueOf(newEnd)); mTextGeneration++; mWebViewCore.sendMessage(EventHub.REPLACE_TEXT, oldStart, oldEnd, arg); } @@ -4888,10 +4888,6 @@ public class WebView extends AbsoluteLayout // Class used to use a dropdown for a