Skip to content

Commit d7bc382

Browse files
committed
apply mvn spotless
1 parent 69a9a36 commit d7bc382

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

tensorflow-core/tensorflow-core-api/src/main/java/org/tensorflow/AbstractGradientAdapter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ private static List<Output<?>> fromNativeOutputs(Graph g, TF_Output nativeOutput
8080
}
8181

8282
/**
83-
* Put the Java outputs into the array of native outputs, resizing it to the necessary size.
84-
*
85-
* @param outputs the outputs to put
86-
* @return pointer to the native array of outputs
87-
*/
83+
* Put the Java outputs into the array of native outputs, resizing it to the necessary size.
84+
*
85+
* @param outputs the outputs to put
86+
* @return pointer to the native array of outputs
87+
*/
8888
private static TF_Output toNativeOutputs(List<Operand<?>> outputs) {
8989
// Use malloc to allocate native outputs, as they will be freed by the native layer and we do
9090
// not want JavaCPP to deallocate them

tensorflow-core/tensorflow-core-api/src/test/java/org/tensorflow/CustomGradientsTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
package org.tensorflow;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertFalse;
45
import static org.junit.jupiter.api.Assertions.assertNotNull;
56
import static org.junit.jupiter.api.Assertions.assertTrue;
6-
import static org.junit.jupiter.api.Assertions.assertFalse;
77

8-
import java.util.List;
98
import org.junit.jupiter.api.Test;
109
import org.junit.jupiter.api.condition.DisabledOnOs;
1110
import org.junit.jupiter.api.condition.OS;

0 commit comments

Comments
 (0)