Skip to content

Commit 84bd9c0

Browse files
committed
Revert "Extract variable before return"
This reverts commit 81ba8de.
1 parent e5039ba commit 84bd9c0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

R/subsetting.R

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,7 @@ NULL
180180
value <- list(value)
181181
names(value) <- names(j)
182182

183-
out <- tbl_subassign(x, i, j, value, i_arg = i_arg, j_arg = j_arg, value_arg = value_arg)
184-
out
183+
tbl_subassign(x, i, j, value, i_arg = i_arg, j_arg = j_arg, value_arg = value_arg)
185184
}
186185

187186

@@ -290,8 +289,7 @@ NULL
290289
}
291290
}
292291

293-
out <- tbl_subassign(x, i, j, value, i_arg, j_arg, substitute(value))
294-
out
292+
tbl_subassign(x, i, j, value, i_arg, j_arg, substitute(value))
295293
}
296294

297295
vectbl_as_row_index <- function(i, x, i_arg, assign = FALSE) {

0 commit comments

Comments
 (0)