mcabber/mcabber/roster.c
changeset 1729 e6e89b1d7831
parent 1727 15e6b21df606
child 1802 b135572fcd26
--- a/mcabber/mcabber/roster.c	Sun Feb 28 14:15:38 2010 +0100
+++ b/mcabber/mcabber/roster.c	Sun Feb 28 15:19:27 2010 +0100
@@ -1,7 +1,7 @@
 /*
  * roster.c     -- Local roster implementation
  *
- * Copyright (C) 2005-2009 Mikael Berthe <mikael@lilotux.net>
+ * Copyright (C) 2005-2010 Mikael Berthe <mikael@lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -168,7 +168,6 @@
 
 // Resources are sorted in ascending order
 static gint resource_compare_prio(res *a, res *b) {
-  //return (a->prio - b->prio);
   if (a->prio < b->prio) return -1;
   else                   return 1;
 }