Skip to content

Commit 2f777d5

Browse files
committed
removed empty lines
1 parent 2110d98 commit 2f777d5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

R/rowwiseDT.R

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ rowwiseDT = function(...) {
1313
nrows = length(body) %/% ncols
1414
if (length(body) != nrows * ncols)
1515
stopf("There are %d columns but the number of cells is %d, which is not an integer multiple of the columns", ncols, length(body))
16-
1716
is_problematic = vapply(
1817
body,
1918
function(v) !is.atomic(v) && !is.null(v) && typeof(v) != "list",
2019
FUN.VALUE = logical(1L)
2120
)
22-
2321
if (any(is_problematic)) {
2422
first_problem_idx = which(is_problematic)[1L]
2523
col_idx = (first_problem_idx - 1L) %% ncols + 1L

0 commit comments

Comments
 (0)