From 1f6c91a7ba7ef651e05a1e6657c78b95fc9deee5 Mon Sep 17 00:00:00 2001 From: Aviv Eyal Date: Mon, 12 Jan 2015 09:48:38 -0800 Subject: [PATCH] Remove lingering setForceLocal() call Summary: leftovers from D10959, I guess Test Plan: git grep setForceLocal Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11349 --- .../DifferentialFinishPostponedLintersConduitAPIMethod.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/applications/differential/conduit/DifferentialFinishPostponedLintersConduitAPIMethod.php b/src/applications/differential/conduit/DifferentialFinishPostponedLintersConduitAPIMethod.php index 3e183d6bd5..8cd4f87ea3 100644 --- a/src/applications/differential/conduit/DifferentialFinishPostponedLintersConduitAPIMethod.php +++ b/src/applications/differential/conduit/DifferentialFinishPostponedLintersConduitAPIMethod.php @@ -103,7 +103,6 @@ final class DifferentialFinishPostponedLintersConduitAPIMethod 'name' => 'arc:lint', 'data' => json_encode($messages), )); - $call->setForceLocal(true); $call->setUser($request->getUser()); $call->execute(); $call = new ConduitCall( @@ -113,10 +112,7 @@ final class DifferentialFinishPostponedLintersConduitAPIMethod 'name' => 'arc:lint-postponed', 'data' => json_encode($postponed_linters), )); - $call->setForceLocal(true); $call->setUser($request->getUser()); $call->execute(); - } - }