/** @return the INSTANCE of Channel or null if not yet initialized */
  protected static IChannel getInstance() {
    if (Channel.instance == null) {
      InternalLogging.error(TAG, "getInstance was called before initialization");
    }

    return Channel.instance;
  }