Page MenuHomePhorge

Remove call to non-existing AphrontTypeaheadTemplateView::renderToken()
ClosedPublic

Authored by aklapper on Jul 3 2024, 06:39.
Tags
None
Referenced Files
F3349216: D25721.1743750844.diff
Thu, Apr 3, 07:14
F3348225: D25721.1743735152.diff
Thu, Apr 3, 02:52
F3341655: D25721.1743655517.diff
Wed, Apr 2, 04:45
F3336033: D25721.1743568460.diff
Tue, Apr 1, 04:34
F3333795: D25721.1743540187.diff
Mon, Mar 31, 20:43
F3331912: D25721.1743515083.diff
Mon, Mar 31, 13:44
F3330024: D25721.1743483088.diff
Mon, Mar 31, 04:51
F3327351: D25721.1743437173.diff
Sun, Mar 30, 16:06

Details

Summary

AphrontTypeaheadTemplateView::renderToken() is an undefined method,
and its result is stored in an orphan variable, and no child class
extends AphrontTypeaheadTemplateView defining a renderToken().
Thus remove its call from AphrontTypeaheadTemplateView::render().

Test Plan

Read/grep the code in this class.

Diff Detail

Repository
rP Phorge
Branch
aphrontTypeaheadTemplateViewRenderToken
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 1421
Build 1421: arc lint + arc unit

Event Timeline

aklapper requested review of this revision.Jul 3 2024, 06:39

lgtm

Additional consideration under control: an external class may have extended AphrontTypeaheadTemplateView and defining a renderToken() there, and making this snippet operative (I'm not saying that it's a good practice, I'm saying that it would work). But this extreme corner case is not the case.

grep -FR 'renderToken(' .
./src/applications/search/compiler/PhutilSearchQueryCompiler.php:      $result[] = $this->renderToken($token);
./src/applications/search/compiler/PhutilSearchQueryCompiler.php:      $result[] = $this->renderToken($token);
./src/applications/search/compiler/PhutilSearchQueryCompiler.php:      $result[] = $this->renderToken($token, $this->getStemmer());
./src/applications/search/compiler/PhutilSearchQueryCompiler.php:  private function renderToken(
./src/view/control/AphrontTypeaheadTemplateView.php:      $tokens[] = $this->renderToken($key, $value);

The PhutilSearchQueryCompiler is completely unrelated 👍

Moreover the result is stored in an orphan variable. It may happen that this method could have desired rendering side-effects, but this is just not the case, per above. Thanks

This revision is now accepted and ready to land.Jul 20 2024, 08:40