Remove unnecessary code in start() method

Inside the LatencyTester test helper, we already call updateEnabled()
inside the constructor and also have a DeviceConfig property change
listener that also calls it, so we don't need to call it inside
start().

Bug: 286973787
Test: atp:v2/android-crystalball-eng/health/microbench/systemui/systemui-latency-suite
Change-Id: I4d05788771835ff51c098d11da639ede1d4ef400
diff --git a/packages/SystemUI/src/com/android/systemui/LatencyTester.java b/packages/SystemUI/src/com/android/systemui/LatencyTester.java
index 6ea0fc3..b33d501 100644
--- a/packages/SystemUI/src/com/android/systemui/LatencyTester.java
+++ b/packages/SystemUI/src/com/android/systemui/LatencyTester.java
@@ -80,7 +80,6 @@
 
     @Override
     public void start() {
-        updateEnabled();
     }
 
     private void fakeWakeAndUnlock(BiometricSourceType type) {