From d9875863234ed47a713ca1added7e1524a077c25 Mon Sep 17 00:00:00 2001 From: Vadim Tryshev Date: Wed, 6 Dec 2023 18:57:33 -0800 Subject: [PATCH] Disable alpha jump detector The detector flakes, and I have no bandwidth now to take care of it. Bug: 309014345 Test: presubmit Flag: N/A Change-Id: I97b02736354274a97ed0eb4eb71773a5c858cae4 --- .../util/viewcapture_analysis/ViewCaptureAnalyzer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/com/android/launcher3/util/viewcapture_analysis/ViewCaptureAnalyzer.java b/tests/src/com/android/launcher3/util/viewcapture_analysis/ViewCaptureAnalyzer.java index ba024733d7..b27ccbfd2f 100644 --- a/tests/src/com/android/launcher3/util/viewcapture_analysis/ViewCaptureAnalyzer.java +++ b/tests/src/com/android/launcher3/util/viewcapture_analysis/ViewCaptureAnalyzer.java @@ -35,7 +35,7 @@ public class ViewCaptureAnalyzer { // All detectors. They will be invoked in the order listed here. private static final AnomalyDetector[] ANOMALY_DETECTORS = { - new AlphaJumpDetector(), +// new AlphaJumpDetector(), // b/309014345 // new FlashDetector(), // b/309014345 new PositionJumpDetector() };