Skip to content
Snippets Groups Projects
Commit 60823676 authored by izabel's avatar izabel
Browse files

fix: remove warning

SVN: 8528
parent 02c43c0b
No related branches found
No related tags found
No related merge requests found
...@@ -41,10 +41,8 @@ public class PersonRenderer implements GridCellRenderer<ModelData> ...@@ -41,10 +41,8 @@ public class PersonRenderer implements GridCellRenderer<ModelData>
String lastName = person.getLastName(); String lastName = person.getLastName();
if (firstName != null && lastName != null) if (firstName != null && lastName != null)
{ {
if (firstName != null) result.append(firstName);
{ result.append(" ");
result.append(firstName + " ");
}
result.append(lastName); result.append(lastName);
} else } else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment