Skip to content

Commit 26ea447

Browse files
committed
Address comments
1 parent 1aefae6 commit 26ea447

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/google/devtools/build/lib/analysis/FileProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public boolean isImmutable() {
5757

5858
@Override
5959
public void debugPrint(Printer printer, StarlarkThread thread) {
60-
printer.append("file_provider(files_to_build = ");
60+
printer.append("FileProvider(files_to_build = ");
6161
printer.debugPrint(getFilesToBuildForStarlark(), thread);
6262
printer.append(")");
6363
}

src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ String describeFingerprint(boolean digestAbsolutePaths) {
11541154

11551155
@Override
11561156
public void debugPrint(Printer printer, StarlarkThread thread) {
1157-
printer.append("runfiles(empty_files = ");
1157+
printer.append("Runfiles(empty_files = ");
11581158
printer.debugPrint(getEmptyFilenamesForStarlark(), thread);
11591159
printer.append(", files = ");
11601160
printer.debugPrint(getArtifactsForStarlark(), thread);

0 commit comments

Comments
 (0)