mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-12-22 18:48:00 +01:00
fix for NPE in setName
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2101 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
46d6647772
commit
5d628f4d36
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ public class RosterEntry {
|
|||
*/
|
||||
public void setName(String name) {
|
||||
// Do nothing if the name hasn't changed.
|
||||
if (name != null && this.name.equals(name)) {
|
||||
if (name != null && name.equals(this.name)) {
|
||||
return;
|
||||
}
|
||||
this.name = name;
|
||||
|
|
Loading…
Reference in a new issue