We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29a535c commit b60322dCopy full SHA for b60322d
1 file changed
samples/snippets/src/main/java/com/example/analytics/RunReportSample.java
@@ -87,7 +87,7 @@ static void sampleRunReport(String propertyId) throws Exception {
87
// Prints results of a runReport call.
88
static void printRunResponseResponse(RunReportResponse response) {
89
// [START analyticsdata_print_run_report_response_header]
90
- System.out.println(response.getRowsList().size() + "rows received");
+ System.out.printf("%s rows received%n", response.getRowsList().size());
91
92
for (DimensionHeader header : response.getDimensionHeadersList()) {
93
System.out.printf(
0 commit comments