Replaced obsolete separator between project name and project id
The proper formatting is "Project name (Project id)", instead of unclear "Project id :: Project name". FEA: ItEr75S04BugFixing
This commit is contained in:
parent
1b7f5a8fcd
commit
df22eb0062
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ public abstract class TemplateFinder<T extends OrderElementTemplate> extends
|
|||
}
|
||||
|
||||
protected String extractStringFor(T template) {
|
||||
return template.getCode() + " :: " + template.getName();
|
||||
return template.getName() + " (" + template.getCode() + ")";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue