Removing Minting Event from Safemoon Fork Project

Hey Guys - I’m attempting a Safemoon fork but I would like to remove the mint events that happen.

Can anyone be kind enough to explain what this part of the code does ? I’m guessing it creates more tokens every time a transaction takes place ?

Thanks in advance guys

 // pausable contract
    bool private _paused = false;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }