From cc44ae32c5461755cc9f0144244851dbdceb4b54 Mon Sep 17 00:00:00 2001
From: epriestley <git@epriestley.com>
Date: Fri, 20 May 2022 10:08:35 -0700
Subject: [PATCH] Remove obsolete "setDisableMacros()" on
 "PhabricatorRemarkupControl"

Summary:
Ref T13682. This method originated in D4781 and no longer has any callers; remove it.

(I believe this was from an era where macros didn't have to be on their own line to trigger.)

Test Plan: Grepped for method, found no callers.

Maniphest Tasks: T13682

Differential Revision: https://secure.phabricator.com/D21831
---
 src/view/form/control/PhabricatorRemarkupControl.php | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/src/view/form/control/PhabricatorRemarkupControl.php b/src/view/form/control/PhabricatorRemarkupControl.php
index 74478c7d51..67afd10630 100644
--- a/src/view/form/control/PhabricatorRemarkupControl.php
+++ b/src/view/form/control/PhabricatorRemarkupControl.php
@@ -3,17 +3,11 @@
 final class PhabricatorRemarkupControl
   extends AphrontFormTextAreaControl {
 
-  private $disableMacro = false;
   private $disableFullScreen = false;
   private $canPin;
   private $sendOnEnter = false;
   private $remarkupMetadata = array();
 
-  public function setDisableMacros($disable) {
-    $this->disableMacro = $disable;
-    return $this;
-  }
-
   public function setDisableFullScreen($disable) {
     $this->disableFullScreen = $disable;
     return $this;
@@ -234,9 +228,7 @@ final class PhabricatorRemarkupControl
       ),
     );
 
-    $can_use_macros =
-      (!$this->disableMacro) &&
-      (function_exists('imagettftext'));
+    $can_use_macros = function_exists('imagettftext');
 
     if ($can_use_macros) {
       $can_use_macros = PhabricatorApplication::isClassInstalledForViewer(