gfe-relnote: Remove no-op std::move from QuicFramer::DecryptPayload. Protected by reloadable flag quic_v44_disable_trial_decryption.
PiperOrigin-RevId: 246405040
Change-Id: Ib5b86c1f33ec4dc40ef83a3ea74f13d28069d440
diff --git a/quic/core/quic_framer.cc b/quic/core/quic_framer.cc
index 3553628..0264e80 100644
--- a/quic/core/quic_framer.cc
+++ b/quic/core/quic_framer.cc
@@ -4033,8 +4033,6 @@
// Switch to the alternative decrypter and latch so that we cannot
// switch back.
decrypter_level_ = alternative_decrypter_level_;
- decrypter_[decrypter_level_] =
- std::move(decrypter_[alternative_decrypter_level_]);
alternative_decrypter_level_ = NUM_ENCRYPTION_LEVELS;
} else {
// Switch the alternative decrypter so that we use it first next time.