FILE:2024-10-ramses-exchange/contracts/CL/gauge/FeeCollector.sol

 /// @notice for tokenless deployments, disable fee distribution until ve system exists
    function setIsLive(bool status) external onlyTreasury {
        isTokenLive = status;
    }

 /// @dev if there's no gauge, there's no fee distributor, send everything to the treasury directly
        if (gauge == address(0) || !isAlive || !isTokenLive) {
            (uint128 _amount0, uint128 _amount1) = pool.collectProtocol(
                treasury,
                type(uint128).max,
                type(uint128).max
            );
if (gauge == address(0) || !isAlive || !isTokenLive) {
    pool.collectProtocol(treasury, type(uint128).max, type(uint128).max);
}
