Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mythrocks committed Jan 27, 2022
1 parent bb7ffd5 commit c5340c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/src/main/native/src/ColumnViewJni.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,8 @@ JNIEXPORT jlongArray JNICALL Java_ai_rapids_cudf_ColumnView_stringSplit(JNIEnv *
cudf::strings_column_view const scv{*reinterpret_cast<cudf::column_view *>(column_view)};
auto delimiter = reinterpret_cast<cudf::string_scalar *>(delimiter_ptr);

return cudf::jni::convert_table_for_return(env, cudf::strings::split(scv, *delimiter, max_split));
return cudf::jni::convert_table_for_return(env,
cudf::strings::split(scv, *delimiter, max_split));
}
CATCH_STD(env, 0);
}
Expand Down

0 comments on commit c5340c2

Please sign in to comment.