tweak method for clarity -- no behavior change

This commit is contained in:
Eric House 2012-05-30 06:52:08 -07:00
parent 42f2612e67
commit a03dc80205

View file

@ -718,10 +718,9 @@ public class GameUtils {
public static boolean feedMessages( Context context, String relayID,
byte[][] msgs, MultiMsgSink sink )
{
boolean draw = false;
long[] rowids = DBUtils.getRowIDsFor( context, relayID );
boolean draw = null != rowids;
if ( draw ) {
draw = false;
if ( null != rowids ) {
for ( long rowid : rowids ) {
draw = feedMessages( context, rowid, msgs, null, sink ) || draw;
}