Bug fix for setName method.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1917 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-05-05 04:33:22 +00:00 committed by mtucker
parent 7a15fcb32f
commit 4929a81e72
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class RosterEntry {
*/
public void setName(String name) {
// Do nothing if the name hasn't changed.
if (this.name.equals(name)) {
if (name != null && this.name.equals(name)) {
return;
}
this.name = name;