From 2a2d8f1479cdf943e2bc2da0924a4192fc7733d4 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 18 Oct 2021 15:13:02 -0700 Subject: 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 --- libs/binder/servicedispatcher.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'libs/binder/servicedispatcher.cpp') 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) { -- cgit v1.2.3-59-g8ed1b