Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
rbasralian committed Sep 18, 2024
1 parent 0739544 commit 2276159
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ default <TYPE> ColumnSource<TYPE> cast(Class<? extends TYPE> clazz, @Nullable Cl
* @return A {@code ColumnSource} parameterized by {@code TYPE}.
*/
@FinalDefault
default <TYPE> ColumnSource<TYPE> cast(Class<? extends TYPE> clazz, @Nullable Class<?> componentType, @Nullable String colName) {
default <TYPE> ColumnSource<TYPE> cast(Class<? extends TYPE> clazz, @Nullable Class<?> componentType,
@Nullable String colName) {
Require.neqNull(clazz, "clazz");
final String castCheckPrefix = colName == null ? "ColumnSource" : "ColumnSource[" + colName + ']';
TypeHelper.checkCastTo(castCheckPrefix, getType(), getComponentType(), clazz, componentType);
Expand Down

0 comments on commit 2276159

Please sign in to comment.