lib/raven/transports/udp.rb in sentry-raven-0.15.2 vs lib/raven/transports/udp.rb in sentry-raven-0.15.3

- old
+ new

@@ -8,15 +8,9 @@ class UDP < Transport def send_event(auth_header, data, _options = {}) conn.send "#{auth_header}\n\n#{data}", 0 end - def send(auth_header, data, options = {}) - Raven.logger.warn "DEPRECATION WARNING: Calling #send on a Transport will be \ - removed in Raven-Ruby 0.14! Use #send_event instead!" - send_event(auth_header, data, options) - end - private def conn @conn ||= begin sock = UDPSocket.new