diff --git a/src/applications/transactions/storage/PhabricatorApplicationTransaction.php b/src/applications/transactions/storage/PhabricatorApplicationTransaction.php index d6d961c780..c7be284ecd 100644 --- a/src/applications/transactions/storage/PhabricatorApplicationTransaction.php +++ b/src/applications/transactions/storage/PhabricatorApplicationTransaction.php @@ -428,21 +428,6 @@ abstract class PhabricatorApplicationTransaction return 'red'; } break; - case PhabricatorTransactions::TYPE_SUBSCRIBERS: - $old = $this->getOldValue(); - $new = $this->getNewValue(); - $add = array_diff($new, $old); - $rem = array_diff($old, $new); - if ($add && $rem) { - return 'green'; - } else if ($add) { - return 'green'; - } else if ($rem) { - return 'black'; - } else { - return null; - } - break; } return null; }