Skip to content

Commit ff76253

Browse files
committed
Reword comments.
1 parent 7918edb commit ff76253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dlp/src/main/java/dlp/snippets/InspectFile.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ public static void inspectFile(String projectId, String filePath, String fileTyp
6868
.setIncludeQuote(true)
6969
.build();
7070

71-
// Construct request
71+
// Construct the request to be sent by the client
7272
InspectContentRequest request = InspectContentRequest.newBuilder()
7373
.setParent(project.toString())
7474
.setItem(item)
7575
.setInspectConfig(config)
7676
.build();
7777

78-
// Run request and parse response
78+
// Use the client to send the request and parse results
7979
InspectContentResponse response = dlp.inspectContent(request);
8080
System.out.println("Findings: " + response.getResult().getFindingsCount());
8181
for (Finding f : response.getResult().getFindingsList()) {

0 commit comments

Comments
 (0)