Skip to content

Commit d4eff64

Browse files
committed
Actually fixes R style errors, I think
1 parent a67965a commit d4eff64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

R/pkg/R/DataFrame.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1443,9 +1443,9 @@ setMethod("join",
14431443
sdf <- callJMethod(x@sdf, "join", y@sdf, joinExpr@jc)
14441444
} else {
14451445
if (joinType %in% c("inner", "outer", "full", "fullouter",
1446-
"leftouter", "left_outer", "left",
1447-
"rightouter", "right_outer", "right", "leftsemi")) {
1448-
joinType <- gsub("_", "", joinType)
1446+
"leftouter", "left_outer", "left",
1447+
"rightouter", "right_outer", "right", "leftsemi")) {
1448+
joinType <- gsub("_", "", joinType)
14491449
sdf <- callJMethod(x@sdf, "join", y@sdf, joinExpr@jc, joinType)
14501450
} else {
14511451
stop("joinType must be one of the following types: ",

0 commit comments

Comments
 (0)