Merge "Update language to comply with Android’s inclusive language guidance"

This commit is contained in:
Treehugger Robot
2020-07-23 17:56:04 +00:00
committed by Gerrit Code Review
3 changed files with 3 additions and 3 deletions

View File

@@ -549,7 +549,7 @@ public class Html {
out.append(((ImageSpan) style[j]).getSource()); out.append(((ImageSpan) style[j]).getSource());
out.append("\">"); out.append("\">");
// Don't output the dummy character underlying the image. // Don't output the placeholder character underlying the image.
i = next; i = next;
} }
if (style[j] instanceof AbsoluteSizeSpan) { if (style[j] instanceof AbsoluteSizeSpan) {

View File

@@ -361,7 +361,7 @@ public class Time {
*/ */
@Override @Override
public String toString() { public String toString() {
// toString() uses its own TimeCalculator rather than the shared one. Otherwise crazy stuff // toString() uses its own TimeCalculator rather than the shared one. Otherwise weird stuff
// happens during debugging when the debugger calls toString(). // happens during debugging when the debugger calls toString().
TimeCalculator calculator = new TimeCalculator(this.timezone); TimeCalculator calculator = new TimeCalculator(this.timezone);
calculator.copyFieldsFromTime(this); calculator.copyFieldsFromTime(this);

View File

@@ -918,7 +918,7 @@ public final class Magnifier {
bitmapRenderNode.setOutline(outline); bitmapRenderNode.setOutline(outline);
bitmapRenderNode.setClipToOutline(true); bitmapRenderNode.setClipToOutline(true);
// Create a dummy draw, which will be replaced later with real drawing. // Create a placeholder draw, which will be replaced later with real drawing.
final RecordingCanvas canvas = bitmapRenderNode.beginRecording( final RecordingCanvas canvas = bitmapRenderNode.beginRecording(
mContentWidth, mContentHeight); mContentWidth, mContentHeight);
try { try {