From 2f313a0e0d55076e42e3caa2f0591ff2a0edd2cd Mon Sep 17 00:00:00 2001 From: Austin McKinley Date: Mon, 15 Jul 2019 13:59:36 -0700 Subject: [PATCH] Remove "unstable" status and T2784-specific warning message Summary: Ref T2784. These are lookin' pretty stable. Subclasses like `DiffusionGetLintMessagesConduitAPIMethod` have their warnings about unstable methods, so just remove this warning in the base class. Test Plan: Loaded `/conduit`, observed lack of unstable warnings. Only unstable methods are now `diffusion.getlintmessages`, `diffusion.looksoon`, and `diffusion.updatecoverage`. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T2784 Differential Revision: https://secure.phabricator.com/D20651 --- .../conduit/DiffusionQueryConduitAPIMethod.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/applications/diffusion/conduit/DiffusionQueryConduitAPIMethod.php b/src/applications/diffusion/conduit/DiffusionQueryConduitAPIMethod.php index 716824f9f8..ca32cc0127 100644 --- a/src/applications/diffusion/conduit/DiffusionQueryConduitAPIMethod.php +++ b/src/applications/diffusion/conduit/DiffusionQueryConduitAPIMethod.php @@ -7,17 +7,6 @@ abstract class DiffusionQueryConduitAPIMethod return true; } - public function getMethodStatus() { - return self::METHOD_STATUS_UNSTABLE; - } - - public function getMethodStatusDescription() { - return pht( - 'See T2784 - migrating Diffusion working copy calls to conduit methods. '. - 'Until that task is completed (and possibly after) these methods are '. - 'unstable.'); - } - private $diffusionRequest; private $repository;