Suppression log dans contactlist.
authorVincent Veronis <veroni_v@epitech.net>
Fri, 25 Sep 2009 15:59:02 +0200
changeset 386 928e9403f8c1
parent 385 df1ad72832a4
child 388 21f8a872962f
child 394 1bc22fb59ff0
Suppression log dans contactlist.
src/com/beem/project/beem/ui/ContactList.java
--- a/src/com/beem/project/beem/ui/ContactList.java	Fri Sep 25 15:55:26 2009 +0200
+++ b/src/com/beem/project/beem/ui/ContactList.java	Fri Sep 25 15:59:02 2009 +0200
@@ -324,7 +324,6 @@
 	    @Override
 	    public void run() {
 		sortBeemContactList();
-		Log.i("OO", "OO");
 		mAdapter.notifyDataSetChanged();
 	    }
 	}
@@ -334,7 +333,6 @@
 	 */
 	@Override
 	public void onEntriesAdded(List<String> addresses) throws RemoteException {
-	    Log.i("CONTACTLIST", "ADD");
 	    for (String newName : addresses) {
 		Contact c = new Contact(newName);
 		mListContact.add(c);
@@ -347,7 +345,6 @@
 	 */
 	@Override
 	public void onEntriesDeleted(List<String> addresses) throws RemoteException {
-	    Log.i("CONTACTLIST", "DELETE");
 	    for (String cToDelete : addresses) {
 		for (Contact c : mListContact) {
 		    if (c.getJID().equals(cToDelete)) {
@@ -364,7 +361,6 @@
 	 */
 	@Override
 	public void onEntriesUpdated(List<String> addresses) throws RemoteException {
-	    Log.i("CONTACTLIST", "UPDATED");
 	    mHandler.post(new RunnableChange());
 	}
 
@@ -384,7 +380,6 @@
 		mContactOnGroup.get(getString(R.string.contact_list_no_group)).add(curContact);
 	    }
 	    mHandler.post(new RunnableChange());
-	    Log.i("CONTACTLIST", "delete from group");
 	}
 
 	/**