Skip to content

1639: Remove SearchGutterIconNavigationHandler and simplify markers #2485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prev Previous commit
1639: static fix
  • Loading branch information
VitaliyBoyko committed Feb 15, 2025
commit b98e68afce1c8302f6519c297825b799fd7e426d
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ public void collectSlowLineMarkers(
}

if (!results.isEmpty()) {
final ASTNode node = psiElement.getNode().findChildByType(PhpTokenTypes.IDENTIFIER);
if(node != null) {
final ASTNode node = psiElement.getNode()
.findChildByType(PhpTokenTypes.IDENTIFIER);
if (node != null) {
// Add the property to a collection of line marker info
final NavigationGutterIconBuilder<PsiElement> builder =
NavigationGutterIconBuilder.create(AllIcons.Nodes.Plugin)
Expand Down
Loading