Small improvement

pull/199/head
M66B 3 years ago
parent 9ff5107d34
commit e7550d12b4

@ -91,7 +91,7 @@ public class EntityAnswer implements Serializable {
last = fullName.substring(0, c).trim();
first = fullName.substring(c + 1).trim();
} else {
c = fullName.lastIndexOf(' ');
c = fullName.indexOf(' ');
if (c > 0) {
first = fullName.substring(0, c).trim();
last = fullName.substring(c + 1).trim();

Loading…
Cancel
Save