mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 577907: IIllegalArgumentException on attach process dialog cause of
project with empty name Change-Id: Ib45b75e27d8bf83eb90fa1020823190f4cd16e1b Signed-off-by: Michael Uhl <Michael.Uhl@NashTech.Com>
This commit is contained in:
parent
8ac94b675f
commit
ceb39b8735
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@ public class ProcessPrompterDialog extends TwoPaneElementSelector {
|
|||
|
||||
@Override
|
||||
public boolean match(Object element) {
|
||||
return matcher.matches(elementRenderer.getText(element));
|
||||
String patternString = elementRenderer.getText(element);
|
||||
return patternString != null && matcher.matches(patternString);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue