Skip to content

Commit

Permalink
TableBuilderAbstract refactoring
Browse files Browse the repository at this point in the history
Signed-off-by: Manoel Campos <manoelcampos@gmail.com>
  • Loading branch information
manoelcampos committed Nov 17, 2022
1 parent ef79ce2 commit 93ba0f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ protected Table getTable() {
* The consumer should provide the code you want to be performed over that column.
* @return this TableBuilder object
*/
public final TableBuilderAbstract<T> column(final int index, Consumer<TableColumn> consumer){
public final TableBuilderAbstract<T> column(final int index, final Consumer<TableColumn> consumer){
requireNonNull(consumer);
consumer.accept(table.getColumns().get(index));
return this;
Expand Down

0 comments on commit 93ba0f4

Please sign in to comment.