Skip to content

Commit e88eb5d

Browse files
committed
tidy
1 parent 83bc795 commit e88eb5d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

R/join.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,7 @@ st_join.sf = function(x, y, join = st_intersects, ..., suffix = c(".x", ".y"),
174174
if (inherits(x, "tbl_df") && requireNamespace("dplyr", quietly = TRUE))
175175
st_sf(dplyr::bind_cols(x[ix,], y[unlist(i), , drop = FALSE]))
176176
else
177-
st_sf(cbind(as.data.frame(x)[ix, ,drop=FALSE], y[unlist(i), , drop = FALSE]))
178-
177+
st_sf(cbind(as.data.frame(x)[ix, ,drop=FALSE], y[unlist(i), , drop = FALSE]))
179178
}
180179

181180
#' @export

0 commit comments

Comments
 (0)