Skip to content

Commit 9150076

Browse files
committed
Fixing Kokoro failure issue
1 parent 0efcd8b commit 9150076

File tree

1 file changed

+4
-6
lines changed
  • vision/automl/src/main/java/com/google/cloud/vision/samples/automl

1 file changed

+4
-6
lines changed

vision/automl/src/main/java/com/google/cloud/vision/samples/automl/ModelApi.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ public static void createModel(
106106
/**
107107
* Demonstrates using the AutoML client to get operation status.
108108
*
109-
* @param operationFullId the complete name of a operation. For example, the name of your operation is
110-
* projects/[projectId]/locations/us-central1/operations/[operationId].
109+
* @param operationFullId the complete name of a operation. For example, the name of your
110+
* operation is projects/[projectId]/locations/us-central1/operations/[operationId].
111111
* @throws IOException on Input/Output errors.
112112
*/
113113
public static void getOperationStatus(String operationFullId) throws IOException {
@@ -366,14 +366,12 @@ public static void deleteModel(String projectId, String computeRegion, String mo
366366
}
367367
// [END automl_vision_delete_model]
368368

369-
public static void main(String[] args)
370-
throws Exception {
369+
public static void main(String[] args) throws Exception {
371370
ModelApi modelApi = new ModelApi();
372371
modelApi.argsHelper(args, System.out);
373372
}
374373

375-
public static void argsHelper(String[] args, PrintStream out)
376-
throws Exception {
374+
public static void argsHelper(String[] args, PrintStream out) throws Exception {
377375
ArgumentParser parser =
378376
ArgumentParsers.newFor("ModelApi")
379377
.build()

0 commit comments

Comments
 (0)