Merge "Remove MeasuredText debug messages" into honeycomb
This commit is contained in:
@ -28,6 +28,7 @@ import android.util.Log;
|
|||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
class MeasuredText {
|
class MeasuredText {
|
||||||
|
private static final boolean localLOGV = false;
|
||||||
/* package */ CharSequence mText;
|
/* package */ CharSequence mText;
|
||||||
/* package */ int mTextStart;
|
/* package */ int mTextStart;
|
||||||
/* package */ float[] mWidths;
|
/* package */ float[] mWidths;
|
||||||
@ -58,7 +59,9 @@ class MeasuredText {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
mt = new MeasuredText();
|
mt = new MeasuredText();
|
||||||
Log.e("MEAS", "new: " + mt);
|
if (localLOGV) {
|
||||||
|
Log.v("MEAS", "new: " + mt);
|
||||||
|
}
|
||||||
return mt;
|
return mt;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -226,4 +229,4 @@ class MeasuredText {
|
|||||||
}
|
}
|
||||||
return width;
|
return width;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user