From 5fad79fea388f4fd59cbcbe053b7acb046092fb9 Mon Sep 17 00:00:00 2001 From: Krzysztof Wojciechowski Date: Sat, 25 May 2024 13:32:13 +0000 Subject: [PATCH] Else bracket in the same line --- image_publisher/src/image_publisher.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/image_publisher/src/image_publisher.cpp b/image_publisher/src/image_publisher.cpp index 0b8a47f20..5839ef46f 100644 --- a/image_publisher/src/image_publisher.cpp +++ b/image_publisher/src/image_publisher.cpp @@ -108,8 +108,7 @@ ImagePublisher::ImagePublisher( if (call_reconfigure && !call_init) { ImagePublisher::reconfigureCallback(); - } else if (call_init) - { + } else if (call_init) { ImagePublisher::onInit(); }