Re: [R-pkg-devel] RCMD Note - why did I have to do this?

2015-12-20 Thread Glenn Schultz
Hi Hadley, You are correct -  #' @import method NULL removes the Note - This is a mental semantic error on my part.  Whenever I think import my brain says this "imports foo" and I type #' @imports foo. Thanks for you time and sorry about the confusion on my part Glenn On Dec 20, 2015, at 01:3

Re: [R-pkg-devel] RCMD Note - why did I have to do this?

2015-12-20 Thread Hadley Wickham
You didn't include the NOTE you saw, and this isn't valid roxygen: #' @imports methods::fields So it's a bit hard to tell what the problem is. Hadley On Sun, Dec 20, 2015 at 12:02 PM, Glenn Schultz wrote: > Hello all, > > I need some help understanding namespace and methods. > > I received a

[R-pkg-devel] RCMD Note - why did I have to do this?

2015-12-20 Thread Glenn Schultz
Hello all, I need some help understanding namespace and methods. I received a note from RCMD imports methods fields... I changed my file from #' @import methods NULL  to include the following: #' @imports methods::fields NULL such that it now reads #' @import methods NULL #' @imports method