summaryrefslogtreecommitdiff
path: root/libs/binder/servicedispatcher.cpp
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2021-10-18 15:13:02 -0700
committer Steven Moreland <smoreland@google.com> 2021-10-21 20:46:24 +0000
commit2a2d8f1479cdf943e2bc2da0924a4192fc7733d4 (patch)
treeb4e2ef8410031ac1663c951da3423e8eb99f4fab /libs/binder/servicedispatcher.cpp
parent5f852b9c9bca236b01f8d59853d29fb6b6ee89b6 (diff)
libbinder: RPC - remove 'agreed experimental'
Where this can be used is still limited by sepolicy, but now that we have examples for how to version the wire protocol, tests, fuzzer entries, and most performance analysis is done, we can avoid this function name. Bug: 167966510 Test: N/A Change-Id: Ibda9a656f1b96be7d38c4684cab787e411297a24
Diffstat (limited to 'libs/binder/servicedispatcher.cpp')
-rw-r--r--libs/binder/servicedispatcher.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/binder/servicedispatcher.cpp b/libs/binder/servicedispatcher.cpp
index 23e34aa8ef..777f3c9354 100644
--- a/libs/binder/servicedispatcher.cpp
+++ b/libs/binder/servicedispatcher.cpp
@@ -90,7 +90,6 @@ int Dispatch(const char* name, const ServiceRetriever& serviceRetriever) {
LOG(ERROR) << "Cannot create RpcServer";
return EX_SOFTWARE;
}
- rpcServer->iUnderstandThisCodeIsExperimentalAndIWillNotUseItInProduction();
unsigned int port;
if (status_t status = rpcServer->setupInetServer(kLocalInetAddress, 0, &port); status != OK) {
LOG(ERROR) << "setupInetServer failed: " << statusToString(status);
@@ -207,7 +206,6 @@ int wrapServiceManager(const ServiceRetriever& serviceRetriever) {
service = ServiceManagerProxyToNative::asBinder(interface);
auto rpcServer = RpcServer::make();
- rpcServer->iUnderstandThisCodeIsExperimentalAndIWillNotUseItInProduction();
rpcServer->setRootObject(service);
unsigned int port;
if (status_t status = rpcServer->setupInetServer(kLocalInetAddress, 0, &port); status != OK) {