[SystemStateControllerService] Deleting deprecated APIs

Interfaces:
- CarPowerManagementService.PowerEventProcessingHandler
- CarPowerManagementService.PowerServiceEventListener
are being deprecated. Please use CarPowerManager.setListener()
instead.

Test: N/A
Bug: 32096079
Bug: 112905910
Change-Id: Id2e1d9ed21f1472925f64e2e53f12063ac4c849b
(cherry picked from commit a63ca49a487b9f513a7b1963d2a942a6a19602f8)
diff --git a/service/src/com/android/car/ICarImpl.java b/service/src/com/android/car/ICarImpl.java
index a99a107..447d980 100644
--- a/service/src/com/android/car/ICarImpl.java
+++ b/service/src/com/android/car/ICarImpl.java
@@ -128,8 +128,8 @@
         mCarNightService = new CarNightService(serviceContext, mCarPropertyService);
         mInstrumentClusterService = new InstrumentClusterService(serviceContext,
                 mAppFocusService, mCarInputService);
-        mSystemStateControllerService = new SystemStateControllerService(serviceContext,
-                mCarPowerManagementService, mCarAudioService, this);
+        mSystemStateControllerService = new SystemStateControllerService(
+                serviceContext, mCarAudioService, this);
         mPerUserCarServiceHelper = new PerUserCarServiceHelper(serviceContext);
         mCarBluetoothService = new CarBluetoothService(serviceContext, mCarPropertyService,
                 mPerUserCarServiceHelper, mCarUXRestrictionsService);