mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 06:42:42 +01:00
Remove unused methods from ConpherenceDurableColumnView
Summary: Calls to private methods `ConpherenceDurableColumnView::buildStatusText()` and `ConpherenceDurableColumnView::buildSendButton()` were removed in https://we.phorge.it/rP95d174956639aac7525d52368944edfff7cdb824 Test Plan: Grep the code; run static code analysis. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25784
This commit is contained in:
parent
cf5abd9e4b
commit
e1e1570c11
1 changed files with 0 additions and 19 deletions
|
@ -472,23 +472,4 @@ final class ConpherenceDurableColumnView extends AphrontTagView {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
private function buildStatusText() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function buildSendButton() {
|
|
||||||
$conpherence = $this->getSelectedConpherence();
|
|
||||||
if (!$conpherence) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return javelin_tag(
|
|
||||||
'button',
|
|
||||||
array(
|
|
||||||
'class' => 'grey',
|
|
||||||
'sigil' => 'conpherence-send-message',
|
|
||||||
),
|
|
||||||
pht('Send'));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue