I'm creating a crowdsale contract that's using open-zeppelin smart contracts and the files i'm using are the base Crowdsale.sol and the CappedCrowdsale.sol extension. So, these both files are importing the SafeMath library: import '../math/SafeMath.sol';.
The question is: Why importing the base Crowdsale.sol does not import the library also? Or should i remove the second import becouse it's only there for the case you only wanted de CappedCrowdsale.sol file?
Thanks!