From b898e349a23fe5fe824f8233361667b2a49cd2f9 Mon Sep 17 00:00:00 2001 From: Lorenzo Blasa Date: Mon, 9 Oct 2023 05:36:24 -0700 Subject: [PATCH] Remove unused replace arg Summary: There used to be a flag to control whether we wanted to replace an existing running instance. No longer in use so safe to delete. Reviewed By: antonk52 Differential Revision: D50077975 fbshipit-source-id: 8d7bad1f85e4520fd006cdcabe6e9899468688cc --- desktop/flipper-server/src/index.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/desktop/flipper-server/src/index.tsx b/desktop/flipper-server/src/index.tsx index b25b639a5..b374d2abb 100644 --- a/desktop/flipper-server/src/index.tsx +++ b/desktop/flipper-server/src/index.tsx @@ -70,11 +70,6 @@ const argv = yargs type: 'boolean', default: true, }, - replace: { - describe: 'Replaces any running instance, if any.', - type: 'boolean', - default: true, - }, }) .version('DEV') .help()