commit 14319f49ff6f6525f8f8c1b3e2d41d87007341e9
parent a558acfe2857ed7f6863f3b94c0d895fb9c1a2b4
Author: Ted Campbell <tcampbell@mozilla.com>
Date: Wed, 3 Dec 2025 17:37:04 +0000
Bug 2003234 - Make QueryException class static r=matt-tighe
Avoid entraining parent EventDispatcher type since it is not serializable. This
makes it easier for Fenix crash handling to deal with this.
Differential Revision: https://phabricator.services.mozilla.com/D274882
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/EventDispatcher.java b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/EventDispatcher.java
@@ -227,7 +227,7 @@ public final class EventDispatcher extends JNIObject {
}
}
- public class QueryException extends Exception {
+ public static class QueryException extends Exception {
public final Object data;
public QueryException(final Object data) {