ignore unreachable_switch_default in weird switch case (#737)

This commit is contained in:
Kevin Moore 2024-09-24 12:07:42 -07:00 committed by GitHub
parent 071ebc5f31
commit f8bbdce629
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -153,6 +153,7 @@ class _GrpcWebConversionSink implements ChunkedConversionSink<ByteBuffer> {
case _GrpcWebParseState.message: case _GrpcWebParseState.message:
_parseMessage(chunkData); _parseMessage(chunkData);
break; break;
// ignore: unreachable_switch_default
default: default:
// only expected to be hit when hot-restarting, see above // only expected to be hit when hot-restarting, see above
break processingLoop; break processingLoop;