Skip to content

Commit fc34fd9

Browse files
committed
Fix format
Signed-off-by: Ryan Nett <[email protected]>
1 parent 48596d9 commit fc34fd9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tensorflow-core/tensorflow-core-generator/src/main/java/org/tensorflow/processor/operator/BaseOperatorProcessor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,8 @@ protected OpMethod buildOpMethod(
392392
.addModifiers(Modifier.PUBLIC)
393393
.returns(TypeName.get(endpointMethod.getReturnType()))
394394
.varargs(endpointMethod.isVarArgs())
395-
.addJavadoc("$L", buildOpMethodJavadoc(opClass, endpointMethod, describeByClass).toText());
395+
.addJavadoc(
396+
"$L", buildOpMethodJavadoc(opClass, endpointMethod, describeByClass).toText());
396397

397398
if (deprecated) {
398399
builder.addAnnotation(Deprecated.class);

0 commit comments

Comments
 (0)