mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-23 04:22:05 +01:00
Fixed JDK compatibility issue.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@3905 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
e96b6e7e38
commit
3e1056efe9
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ public class Bookmarks implements PrivateData {
|
||||||
String jid = parser.getAttributeValue("", "jid");
|
String jid = parser.getAttributeValue("", "jid");
|
||||||
|
|
||||||
conf.setName(name);
|
conf.setName(name);
|
||||||
conf.setAutoJoin(Boolean.parseBoolean(autojoin));
|
conf.setAutoJoin(Boolean.valueOf(autojoin).booleanValue());
|
||||||
conf.setJid(jid);
|
conf.setJid(jid);
|
||||||
|
|
||||||
// Check for nickname
|
// Check for nickname
|
||||||
|
|
Loading…
Reference in a new issue