Skip to content

Commit a131681

Browse files
committed
Fix minor styles
Signed-off-by: Sicheng Song <sicheng.song@outlook.com>
1 parent baccc5a commit a131681

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/src/main/java/org/opensearch/ml/common/transport/connector/MLCreateConnectorInput.java

+1
Original file line numberDiff line numberDiff line change
@@ -311,5 +311,6 @@ public MLCreateConnectorInput(StreamInput input) throws IOException {
311311
this.connectorClientConfig = new ConnectorClientConfig(input);
312312
}
313313
}
314+
314315
}
315316
}

ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/remote/RemoteConnectorExecutor.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import static org.opensearch.ml.engine.algorithms.remote.ConnectorUtils.escapeRemoteInferenceInputData;
99
import static org.opensearch.ml.engine.algorithms.remote.ConnectorUtils.processInput;
1010

11-
import java.io.IOException;
1211
import java.util.ArrayList;
1312
import java.util.HashMap;
1413
import java.util.List;
@@ -37,7 +36,7 @@ public interface RemoteConnectorExecutor {
3736

3837
default ModelTensorOutput executePredict(MLInput mlInput) {
3938
List<ModelTensors> tensorOutputs = new ArrayList<>();
40-
39+
4140
if (mlInput.getInputDataset() instanceof TextDocsInputDataSet) {
4241
TextDocsInputDataSet textDocsInputDataSet = (TextDocsInputDataSet) mlInput.getInputDataset();
4342
int processedDocs = 0;

0 commit comments

Comments
 (0)