Merge "Remove MeasuredText debug messages" into honeycomb

This commit is contained in:
Mike Cleron
2011-01-31 23:22:36 -08:00
committed by Android (Google) Code Review

View File

@ -28,6 +28,7 @@ import android.util.Log;
* @hide
*/
class MeasuredText {
private static final boolean localLOGV = false;
/* package */ CharSequence mText;
/* package */ int mTextStart;
/* package */ float[] mWidths;
@ -58,7 +59,9 @@ class MeasuredText {
}
}
mt = new MeasuredText();
Log.e("MEAS", "new: " + mt);
if (localLOGV) {
Log.v("MEAS", "new: " + mt);
}
return mt;
}
@ -226,4 +229,4 @@ class MeasuredText {
}
return width;
}
}
}