diff options
author | 2009-05-26 09:51:23 -0400 | |
---|---|---|
committer | 2009-05-26 09:51:23 -0400 | |
commit | 3246c224d5860b78e1c7264906dbcecca415da9d (patch) | |
tree | 77e0776abddacff23d31dd25a317c4ba1cdc47ab | |
parent | b7eef04564d2568130df297fd55ad3e3c8b1fd62 (diff) |
Fix the build.
A previous change changed a public class to be a static class.
Change it back so the API is not changed.
-rw-r--r-- | core/java/android/webkit/WebView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 66229294010d..66ad2e75e7d7 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -564,7 +564,8 @@ public class WebView extends AbsoluteLayout public void onNewPicture(WebView view, Picture picture); } - public static class HitTestResult { + // FIXME: Want to make this public, but need to change the API file. + public /*static*/ class HitTestResult { /** * Default HitTestResult, where the target is unknown */ |