From 4b4d46539d5e1dbb1b076e762136566eff3a2197 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Wed, 6 Feb 2019 08:54:46 -0500 Subject: report: remove unnecessary case block scopes PR-URL: https://github.com/nodejs/node/pull/25960 Reviewed-By: Anna Henningsen Reviewed-By: Refael Ackermann Reviewed-By: James M Snell Reviewed-By: Richard Lau --- src/node_report_utils.cc | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/src/node_report_utils.cc b/src/node_report_utils.cc index c0812cc3cc..181589b441 100644 --- a/src/node_report_utils.cc +++ b/src/node_report_utils.cc @@ -16,14 +16,12 @@ void ReportEndpoints(uv_handle_t* h, std::ostringstream& out) { int rc = -1; switch (h->type) { - case UV_UDP: { + case UV_UDP: rc = uv_udp_getsockname(&(handle->udp), addr, &addr_size); break; - } - case UV_TCP: { + case UV_TCP: rc = uv_tcp_getsockname(&(handle->tcp), addr, &addr_size); break; - } default: break; } @@ -70,28 +68,24 @@ void ReportPath(uv_handle_t* h, std::ostringstream& out) { uv_any_handle* handle = reinterpret_cast(h); // First call to get required buffer size. switch (h->type) { - case UV_FS_EVENT: { + case UV_FS_EVENT: rc = uv_fs_event_getpath(&(handle->fs_event), buffer.data, &size); break; - } - case UV_FS_POLL: { + case UV_FS_POLL: rc = uv_fs_poll_getpath(&(handle->fs_poll), buffer.data, &size); break; - } default: break; } if (rc == UV_ENOBUFS) { buffer = MallocedBuffer(size); switch (h->type) { - case UV_FS_EVENT: { + case UV_FS_EVENT: rc = uv_fs_event_getpath(&(handle->fs_event), buffer.data, &size); break; - } - case UV_FS_POLL: { + case UV_FS_POLL: rc = uv_fs_poll_getpath(&(handle->fs_poll), buffer.data, &size); break; - } default: break; } @@ -141,13 +135,12 @@ void WalkHandle(uv_handle_t* h, void* arg) { } break; } - case UV_SIGNAL: { + case UV_SIGNAL: // SIGWINCH is used by libuv so always appears. // See http://docs.libuv.org/en/v1.x/signal.html data << "signum: " << handle->signal.signum << " (" << node::signo_string(handle->signal.signum) << ")"; break; - } default: break; } -- cgit v1.2.3