mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-20 15:35:24 +02:00
Bug 431825 - Empty brackets in "Select Process" dialog.
This commit is contained in:
parent
2e7fd0da20
commit
090c85b966
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ public class ProcessPrompter implements IStatusHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
String owner = info.getOwner();
|
String owner = info.getOwner();
|
||||||
if (owner != null) {
|
if (owner != null && !owner.isEmpty()) {
|
||||||
text.append(" (" + owner + ")"); //$NON-NLS-1$//$NON-NLS-2$
|
text.append(" (" + owner + ")"); //$NON-NLS-1$//$NON-NLS-2$
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue