From e98ee73602ac00393faafc0d4d32c671896b6ada Mon Sep 17 00:00:00 2001 From: epriestley Date: Sat, 22 Dec 2018 06:10:44 -0800 Subject: [PATCH] Fix the last remaining (?) continue inside switch Summary: See . This is the only remaining case that the linter rule in D19931 detected in libphutil, arcanist, or Phabricator. Test Plan: Ran `arc lint --everything ...` in all three repositories, only hit this one. Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D19932 --- .../phriction/editor/PhrictionTransactionEditor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/phriction/editor/PhrictionTransactionEditor.php b/src/applications/phriction/editor/PhrictionTransactionEditor.php index 6d72fc5b8e..d09ff5d556 100644 --- a/src/applications/phriction/editor/PhrictionTransactionEditor.php +++ b/src/applications/phriction/editor/PhrictionTransactionEditor.php @@ -351,7 +351,7 @@ final class PhrictionTransactionEditor switch ($type) { case PhrictionDocumentContentTransaction::TRANSACTIONTYPE: if ($xaction->getMetadataValue('stub:create:phid')) { - continue; + break; } if ($this->getProcessContentVersionError()) {