From 01f1e17b7b6a4f6a921535211382b296a92bab9c Mon Sep 17 00:00:00 2001 From: "Yang, Bo" Date: Wed, 24 Nov 2021 12:39:44 -0800 Subject: [PATCH] Reformat ProcessExecutionQueues using 2 spaces indentation (#404) --- src/__Private/ProcessExecutionQueues.hack | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/__Private/ProcessExecutionQueues.hack b/src/__Private/ProcessExecutionQueues.hack index cf767972e..92bd1d5cd 100644 --- a/src/__Private/ProcessExecutionQueues.hack +++ b/src/__Private/ProcessExecutionQueues.hack @@ -11,11 +11,10 @@ namespace Facebook\HHAST\__Private; enum class ProcessExecutionQueues: ProcessExecutionQueue { - // Random number; it might seem high, but it's likely that `hh_parse` will - // execute quick enough that most of the processes are waiting to be cleaned - // up - ProcessExecutionQueue HH_CLIENT = - new ProcessExecutionQueue(2, 'hh_client'); - ProcessExecutionQueue HH_PARSE = new ProcessExecutionQueue(32, 'hh_parse'); + // Random number; it might seem high, but it's likely that `hh_parse` will + // execute quick enough that most of the processes are waiting to be cleaned + // up + ProcessExecutionQueue HH_CLIENT = new ProcessExecutionQueue(2, 'hh_client'); + ProcessExecutionQueue HH_PARSE = new ProcessExecutionQueue(32, 'hh_parse'); }