Remove release timeout event

The timeout message of release focus has not remove when the
ConnectionService is released. This is because the obj of the message
changed from FocusRequest to MessageArgs.

Test: manual
Bug: 73990638
Change-Id: I7f1b71097baf0d4bd31692c1e4e7af9db47656a1
(cherry picked from commit d86cc340dff54751745158e01369d07ab1ebc20f)
diff --git a/src/com/android/server/telecom/ConnectionServiceFocusManager.java b/src/com/android/server/telecom/ConnectionServiceFocusManager.java
index 06d892a..f296502 100644
--- a/src/com/android/server/telecom/ConnectionServiceFocusManager.java
+++ b/src/com/android/server/telecom/ConnectionServiceFocusManager.java
@@ -370,7 +370,7 @@
         // The ConnectionService can call onConnectionServiceFocusReleased even if it's not the
         // current focus connection service, nothing will be changed in this case.
         if (Objects.equals(mCurrentFocus, connectionServiceFocus)) {
-            mEventHandler.removeMessages(MSG_RELEASE_FOCUS_TIMEOUT, mCurrentFocusRequest);
+            mEventHandler.removeMessages(MSG_RELEASE_FOCUS_TIMEOUT);
             ConnectionServiceFocus newCSF = null;
             if (mCurrentFocusRequest != null) {
                 newCSF = mCurrentFocusRequest.call.getConnectionServiceWrapper();