remove logging

This commit is contained in:
Andy2 2011-03-04 05:46:20 -08:00
parent 6acf7fda68
commit a1d1251c0e

View file

@ -98,7 +98,7 @@ public class BoardView extends View implements DrawCtx, BoardHandler,
m_htProportion = gotHt / askedHt; m_htProportion = gotHt / askedHt;
Assert.assertTrue( (bottomRow+1) >= askedHt ); Assert.assertTrue( (bottomRow+1) >= askedHt );
float descent = (bottomRow+1) - askedHt; float descent = (bottomRow+1) - askedHt;
Utils.logf( "descent: " + descent ); // Utils.logf( "descent: " + descent );
m_descentProportion = descent / askedHt; m_descentProportion = descent / askedHt;
Assert.assertTrue( m_descentProportion >= 0 ); Assert.assertTrue( m_descentProportion >= 0 );
m_widthProportion = width / askedHt; m_widthProportion = width / askedHt;