diff options
author | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-02-04 22:26:46 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-02-04 22:26:46 +0100 |
commit | c01f2cedb6ae599c2ddc4c52b5176ca07275283f (patch) | |
tree | fe529e2e29467f9aced1bdf681ac0d423b1bc067 /src/de/gultsch/chat/entities/Account.java | |
parent | 4fd8620c6cc1ca88c4496671e6e59c40aba93019 (diff) |
delete account code now accessible again
Diffstat (limited to '')
-rw-r--r-- | src/de/gultsch/chat/entities/Account.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/de/gultsch/chat/entities/Account.java b/src/de/gultsch/chat/entities/Account.java index 6f8daf8d..f94f7b48 100644 --- a/src/de/gultsch/chat/entities/Account.java +++ b/src/de/gultsch/chat/entities/Account.java @@ -59,15 +59,9 @@ public class Account extends AbstractEntity{ public void setOption(int option, boolean value) { if (value) { - Log.d("xmppService","options: "+options); this.options = (this.options | 1 << option); - Log.d("xmppService","setting option "+option+" to 1"); - Log.d("xmppService","options: "+options); } else { - Log.d("xmppService","options: "+options); - Log.d("xmppService","setting option "+option+" to 0"); this.options = (this.options ^ 1 << option); - Log.d("xmppService","options: "+options); } } |