Issue Description:
_getPTandIBTRates contains logic whether PT has expired and returns if so, also there is a redundant else statement which add unnecessary code to the function:
PrincipalToken.sol#L924-L926
Recommendation:
Remove the else statement, so when maturity hasnt passed code will automatically return the current PT and IBT, the same as it entered the else.
