From 54007e7d0dd10ef42dd64308d18b0ceebd81e395 Mon Sep 17 00:00:00 2001 From: Mark Hansen Date: Thu, 10 Oct 2024 15:36:07 -0700 Subject: [PATCH] Remove "// fall through" comment where there is no falling through. The case statement above returns. PiperOrigin-RevId: 684601080 --- src/google/protobuf/compiler/java/lite/message.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/google/protobuf/compiler/java/lite/message.cc b/src/google/protobuf/compiler/java/lite/message.cc index 79c3c3e642..a0dff953e2 100644 --- a/src/google/protobuf/compiler/java/lite/message.cc +++ b/src/google/protobuf/compiler/java/lite/message.cc @@ -357,7 +357,6 @@ void ImmutableMessageLiteGenerator::Generate(io::Printer* printer) { printer->Print( "}\n" - "// fall through\n" "case GET_DEFAULT_INSTANCE: {\n" " return DEFAULT_INSTANCE;\n" "}\n"