From: Liao Pingfang Date: Mon, 13 Jul 2020 11:56:42 +0000 (+0800) Subject: common: Remove the superfluous break X-Git-Tag: wip-pdonnell-testing-20200918.022351~617^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0491fb9a1eb77e7b9ebee9cc449110de7af70112;p=ceph-ci.git common: Remove the superfluous break Remove the superfuous break, as there is a 'return' before it. Signed-off-by: Liao Pingfang --- diff --git a/src/common/shunique_lock.h b/src/common/shunique_lock.h index 2a8da953c13..5f809e83a8b 100644 --- a/src/common/shunique_lock.h +++ b/src/common/shunique_lock.h @@ -104,7 +104,6 @@ public: switch (o) { case ownership::none: return; - break; case ownership::unique: m->unlock(); break;