mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
cleanup: remove logging and comment
This commit is contained in:
parent
1b2750ef4d
commit
44612c7177
2 changed files with 1 additions and 2 deletions
|
@ -343,7 +343,6 @@ public class GamesListDelegate extends ListDelegateBase
|
||||||
|
|
||||||
void moveGroup( long groupID, boolean moveUp )
|
void moveGroup( long groupID, boolean moveUp )
|
||||||
{
|
{
|
||||||
Log.d( TAG, "moveGroup(up=%b)", moveUp );
|
|
||||||
int src = getGroupPosition( groupID );
|
int src = getGroupPosition( groupID );
|
||||||
int dest = src + (moveUp ? -1 : 1);
|
int dest = src + (moveUp ? -1 : 1);
|
||||||
|
|
||||||
|
|
|
@ -221,7 +221,7 @@ abstract class XWJIService extends JobIntentService {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( obj1.getClass() != obj2.getClass() ) { // NPE
|
if ( obj1.getClass() != obj2.getClass() ) {
|
||||||
equal = false;
|
equal = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue