commit | 70411eeecfa2a1a8f61e283bd8acf6bdb5ee6f6c | [log] [tgz] |
---|---|---|
author | Tyler Gunn <tgunn@google.com> | Thu May 04 20:20:26 2023 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu May 04 20:20:26 2023 +0000 |
tree | 9d6f2d3f1eda5ca70329662f00d62d06b3047305 | |
parent | c7cae571319d995a3e2487453ae0cb92353447c1 [diff] | |
parent | 2b8b610de6381f7e98465c45dd1f1c77d5465e49 [diff] |
Merge "Remove sleep in test app." into udc-dev
diff --git a/testapps/src/com/android/server/telecom/testapps/SelfManagedConnectionService.java b/testapps/src/com/android/server/telecom/testapps/SelfManagedConnectionService.java index 6670095..3ef8fbb 100644 --- a/testapps/src/com/android/server/telecom/testapps/SelfManagedConnectionService.java +++ b/testapps/src/com/android/server/telecom/testapps/SelfManagedConnectionService.java
@@ -142,11 +142,6 @@ connection.setVideoState(request.getVideoState()); Log.i(this, "createSelfManagedConnection %s", connection); mCallList.addConnection(connection); - try { - Thread.sleep(8000); - } catch (InterruptedException e) { - e.printStackTrace(); - } return connection; } }