method chains search: use regular color

This commit is contained in:
Dmitry Batkovich
2017-04-28 12:16:35 +03:00
parent 9c09477b86
commit 84b5cbe732
@@ -15,11 +15,9 @@
*/
package com.intellij.compiler.chainsSearch.completion.lookup;
import com.intellij.codeInsight.lookup.LookupElementPresentation;
import com.intellij.compiler.chainsSearch.ChainRelevance;
import com.intellij.codeInsight.lookup.LookupElement;
import com.intellij.codeInsight.lookup.LookupElementDecorator;
import com.intellij.ui.JBColor;
import com.intellij.compiler.chainsSearch.ChainRelevance;
import org.jetbrains.annotations.NotNull;
/**
@@ -36,10 +34,4 @@ public final class WeightableChainLookupElement extends LookupElementDecorator<L
public ChainRelevance getChainRelevance() {
return myChainRelevance;
}
@Override
public void renderElement(LookupElementPresentation presentation) {
presentation.setItemTextForeground(JBColor.GREEN.darker());
super.renderElement(presentation);
}
}