Why Pausable contract has a constructor?

Hello,

I'm wondering why Pausable contract has a constructor if default value if boolean is false anyway?

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

I can save 378 gas on deploying if I remove this constructor. Should I do that?

Please don't modify the contracts. Instead, open an issue in the repo so we can improve it upstream.