fix spacing (whitespace only)

This commit is contained in:
Andy2 2010-07-12 21:42:04 -07:00
parent 7352cd5449
commit d4a23bbaca

View file

@ -548,7 +548,7 @@ public class BoardView extends View implements DrawCtx, BoardHandler,
} else if ( null != bonusStr ) { } else if ( null != bonusStr ) {
m_fillPaint.setColor( GREY ); m_fillPaint.setColor( GREY );
drawCentered( bonusStr, rect, m_fontDims ); drawCentered( bonusStr, rect, m_fontDims );
} }
} else { } else {
m_fillPaint.setColor( foreColor ); m_fillPaint.setColor( foreColor );
drawCentered( text, rect, m_fontDims ); drawCentered( text, rect, m_fontDims );
@ -557,7 +557,7 @@ public class BoardView extends View implements DrawCtx, BoardHandler,
if ( (CELL_ISBLANK & flags) != 0 ) { if ( (CELL_ISBLANK & flags) != 0 ) {
markBlank( rect, pending ); markBlank( rect, pending );
} }
// frame the cell // frame the cell
m_canvas.drawRect( rect, m_strokePaint ); m_canvas.drawRect( rect, m_strokePaint );
return true; return true;