Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit b634a3f

Browse files
update based on comments
1 parent 26fd646 commit b634a3f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

synth.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import synthtool as s
1818
import synthtool.gcp as gcp
1919
import synthtool.languages.java as java
20+
import os
2021

2122
AUTOSYNTH_MULTIPLE_COMMITS = True
2223

@@ -36,7 +37,7 @@
3637

3738
java.common_templates()
3839

39-
# TODO: Remove all below s.replace() logic when upstream correction is made in gapic
40+
# TODO: Remove all below s.replace() logic when upstream correction is made in gapic https://github.com/googleapis/gapic-generator/issues/3181
4041
# Remove line added by gapic generator
4142
s.replace("google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1alpha2/MockBigQueryWriteImpl.java",
4243
"final Object response = responses.remove();",
@@ -54,4 +55,7 @@
5455
final Object response = responses.remove();
5556
if (response instanceof AppendRowsResponse) {
5657
"""
57-
)
58+
)
59+
60+
# Re-run java code formatter after making hacky code change
61+
os.system("mvn com.coveo:fmt-maven-plugin:format")

0 commit comments

Comments
 (0)