Skip to content

Commit

Permalink
fix checkstype: line is longer than 100 characters
Browse files Browse the repository at this point in the history
Signed-off-by: Yaliang Wu <[email protected]>
  • Loading branch information
ylwu-amzn committed Apr 19, 2022
1 parent 1a5feb2 commit 155f939
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,10 @@ protected Map<String, ExprValue> convertResultRowIntoExprValue(ColumnMeta[] colu
* @param resultRowIter result row iterator
* @return result in ExprTupleValue format
*/
protected ExprTupleValue buildResult(Iterator<Row> inputRowIter, DataFrame inputDataFrame,
MLPredictionOutput predictionResult, Iterator<Row> resultRowIter) {
protected ExprTupleValue buildResult(Iterator<Row> inputRowIter,
DataFrame inputDataFrame,
MLPredictionOutput predictionResult,
Iterator<Row> resultRowIter) {
ImmutableMap.Builder<String, ExprValue> resultSchemaBuilder = new ImmutableMap.Builder<>();
resultSchemaBuilder.putAll(convertRowIntoExprValue(inputDataFrame.columnMetas(),
inputRowIter.next()));
Expand Down

0 comments on commit 155f939

Please sign in to comment.