diff options
Diffstat (limited to 'src/de/gultsch/chat/entities/Account.java')
-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); } } |