# File lib/merb-core/server.rb, line 217
      def remove_pid_file(port)
        pidfile = pid_file(port)
        if File.exist?(pidfile)
          Merb.logger.warn! "Removing pid file #{pidfile} (port/socket: #{port})..."
          FileUtils.rm(pidfile)
        end
      end