Solution for EA-65195. #EA-65195 Fixed.
This commit is contained in:
@@ -35,7 +35,7 @@ public class JetFunctionPresenter implements ItemPresentationProvider<JetNamedFu
|
|||||||
return new JetDefaultNamedDeclarationPresentation(function) {
|
return new JetDefaultNamedDeclarationPresentation(function) {
|
||||||
@Override
|
@Override
|
||||||
public String getPresentableText() {
|
public String getPresentableText() {
|
||||||
StringBuilder presentation = new StringBuilder(function.getName());
|
StringBuilder presentation = new StringBuilder(function.getName() != null ? function.getName() : "");
|
||||||
|
|
||||||
Collection<String> paramsStrings = Collections2.transform(function.getValueParameters(), new Function<JetParameter, String>() {
|
Collection<String> paramsStrings = Collections2.transform(function.getValueParameters(), new Function<JetParameter, String>() {
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user