remote_helpers.sh: remove unused function definition
The last use of nc_l was removed in 06fd93bcb6ffce5392244b8597ac267da790a396.
So remove the now redundant function definition as well, also to avoid motivating
people to use it again, contributing to #7906-style flakiness.
Change-Id: I33be9eef5a88b3ebaf1a170ba77a44ed812b30fa
PiperOrigin-RevId: 245071415
diff --git a/src/test/shell/bazel/remote_helpers.sh b/src/test/shell/bazel/remote_helpers.sh
index ef80a74..57c6251 100755
--- a/src/test/shell/bazel/remote_helpers.sh
+++ b/src/test/shell/bazel/remote_helpers.sh
@@ -16,19 +16,6 @@
set -eu
-case "${PLATFORM}" in
- darwin|freebsd)
- function nc_l() {
- nc -l $1
- }
- ;;
- *)
- function nc_l() {
- nc -l -p $1 -q 1
- }
- ;;
-esac
-
# Serves $1 as a file on localhost:$nc_port. Sets the following variables:
# * nc_port - the port nc is listening on.
# * nc_log - the path to nc's log.