android/source/src/java/org/mozilla/gecko/gfx/LayerView.java | 10 ---------- 1 file changed, 10 deletions(-)
New commits: commit a3022955cd32d90f760614054cb98cec35b9c6fd Author: Michael Weghorn <[email protected]> AuthorDate: Tue Nov 11 12:51:19 2025 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Wed Nov 12 01:40:10 2025 +0100 android: Drop unused LayerView.setTouchIntercepter Change-Id: I127cc13d2390d948dc68cbd76cce4582d58eeda6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193794 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/android/source/src/java/org/mozilla/gecko/gfx/LayerView.java b/android/source/src/java/org/mozilla/gecko/gfx/LayerView.java index 2a36e99d2636..22be74f6e995 100644 --- a/android/source/src/java/org/mozilla/gecko/gfx/LayerView.java +++ b/android/source/src/java/org/mozilla/gecko/gfx/LayerView.java @@ -97,16 +97,6 @@ public class LayerView extends FrameLayout { } } - public void setTouchIntercepter(final OnInterceptTouchListener touchIntercepter) { - // this gets run on the gecko thread, but for thread safety we want the assignment - // on the UI thread. - post(new Runnable() { - public void run() { - mTouchIntercepter = touchIntercepter; - } - }); - } - public void setInputConnectionHandler(InputConnectionHandler inputConnectionHandler) { mInputConnectionHandler = inputConnectionHandler; }
