Skip to content

Commit f28b4ab

Browse files
authored
[ggj][engx] fix: output srcjar path (#269)
* feat: parse batching descriptor fields * feat: add Field.isMap and map-parsing test * feat: add initial batching descriptor field to ServiceStubSettings * feat: support '? extends Foo' wildcard bounded references * fix: speed up precommit checks with --disk_cache * feat: add splitException, count{Elements,Bytes} batching descriptor methods to ServiceStubSettings * feat: add GeneralForStatement * feat: add splitRseponse to batching desc. in ServiceStubSettings * fix: output srcjar path
1 parent b78dbc9 commit f28b4ab

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/com/google/api/generator/Main.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static void main(String[] args)
3232
ExtensionRegistry registry = ExtensionRegistry.newInstance();
3333
registerAllExtensions(registry);
3434
CodeGeneratorRequest request = CodeGeneratorRequest.parseFrom(System.in, registry);
35-
String outputFilePath = String.format("%stemp-gen.srcjar", request.getParameter());
35+
String outputFilePath = "temp-gen.srcjar";
3636
CodeGeneratorResponse response = Generator.generateGapic(request, outputFilePath);
3737
response.writeTo(System.out);
3838
}

src/main/java/com/google/api/generator/gapic/composer/BatchingDescriptorComposer.java

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public static Expr createBatchingDescriptorFieldDeclExpr(
7474
javaMethods.add(createGetBatchPartitionKeyMethod(method, batchingSettings, messageTypes));
7575
javaMethods.add(createGetRequestBuilderMethod(method, batchingSettings));
7676
javaMethods.add(createSplitResponseMethod(method, batchingSettings, messageTypes));
77-
7877
javaMethods.add(createSplitExceptionMethod(method));
7978
javaMethods.add(createCountElementsMethod(method, batchingSettings));
8079
javaMethods.add(createCountByteSMethod(method));

0 commit comments

Comments
 (0)