We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c759a9 commit 67fececCopy full SHA for 67fecec
gapic-generator-java/src/main/java/com/google/api/generator/engine/writer/JavaWriterVisitor.java
@@ -362,7 +362,8 @@ public void visit(MethodInvocationExpr methodInvocationExpr) {
362
leftAngle();
363
int numGenerics = methodInvocationExpr.generics().size();
364
for (int i = 0; i < numGenerics; i++) {
365
- buffer.append(methodInvocationExpr.generics().get(i).name());
+ Reference r = methodInvocationExpr.generics().get(i);
366
+ r.accept(this);
367
if (i < numGenerics - 1) {
368
buffer.append(COMMA);
369
space();
0 commit comments