Skip to content

Commit

Permalink
(10493) Clean Title Field When no Title Selected (#10508)
Browse files Browse the repository at this point in the history
  • Loading branch information
BodorAnnamaria committed Jan 13, 2021
1 parent 3e910d4 commit 4a24941
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ public void setTitle(final I_AD_User user)
String title = extractTitle(user);
user.setTitle(title);
}
else
{
user.setTitle("");
}
}

private String extractTitle(I_AD_User user) {
Expand Down

0 comments on commit 4a24941

Please sign in to comment.