Displaying 1 result from an estimated 1 matches for "cellularautomaton".
2013 Aug 30
2
"False" warning on "replacing previous import" when re-exporting identical object
...ng 'PkgC'
This in turn causes 'R CMD check' on PkgC to generate a WARNING (no-go at CRAN):
* checking whether package 'PkgC' can be installed ... WARNING
Found the following significant warnings:
Warning: replacing previous import by 'PkgA::foo' when loading
'CellularAutomaton'
FALSE?
Isn't it valid to argue that this is a "false" warning, because
identical(PkgB::foo, PkgA::foo) is TRUE and therefore has no effect?
/Henrik
PS. The above can be avoided by using explicit importFrom() on PkgA
and PkgB, but that's really tedious. In my case this i...