Github user yu-iskw commented on a diff in the pull request:

    https://github.com/apache/spark/pull/7584#discussion_r35183635
  
    --- Diff: R/pkg/R/RDD.R ---
    @@ -97,7 +97,8 @@ setMethod("initialize", "PipelinedRDD", function(.Object, 
prev, func, jrdd_val)
         # prev_serializedMode is used during the delayed computation of JRDD 
in getJRDD
       } else {
         pipelinedFunc <- function(partIndex, part) {
    -      func(partIndex, prev@func(partIndex, part))
    +      f <- prev@func
    --- End diff --
    
    Because a warning about a space before left parenthesis was caught. I tried 
to do as follows. But lintr caught a warning about that.
    
    ```
    func(partIndex, (prev@func)(partIndex, part))
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to