I'm using Ownable.
I'm making a contract that should always have an owner. It will break without one.
Would it be best to override renounceOwnership() with a function that does nothing?
I'd like to just delete it and save the gas from deploying a dangerous function and then blocking it with a useless one, but I assume I shouldn't be tampering with the OpenZeppelin code itself?