gfe-relnote: Deprecate gfe2_reloadable_flag_quic_neuter_unencrypted_control_frames.

PiperOrigin-RevId: 301164611
Change-Id: I22981c5095149ba725b978c3f44b4849185fcbe1
diff --git a/quic/core/quic_unacked_packet_map.cc b/quic/core/quic_unacked_packet_map.cc
index efb8e65..8276f1c 100644
--- a/quic/core/quic_unacked_packet_map.cc
+++ b/quic/core/quic_unacked_packet_map.cc
@@ -222,16 +222,10 @@
       RemoveFromInFlight(packet_number);
       it->state = NEUTERED;
       neutered_packets.push_back(packet_number);
-      if (GetQuicReloadableFlag(quic_neuter_unencrypted_control_frames) ||
-          supports_multiple_packet_number_spaces_) {
-        if (GetQuicReloadableFlag(quic_neuter_unencrypted_control_frames)) {
-          QUIC_RELOADABLE_FLAG_COUNT(quic_neuter_unencrypted_control_frames);
-        }
-        // Notify session that the data has been delivered (but do not notify
-        // send algorithm).
-        // TODO(b/148868195): use NotifyFramesNeutered.
-        NotifyFramesAcked(*it, QuicTime::Delta::Zero(), QuicTime::Zero());
-      }
+      // Notify session that the data has been delivered (but do not notify
+      // send algorithm).
+      // TODO(b/148868195): use NotifyFramesNeutered.
+      NotifyFramesAcked(*it, QuicTime::Delta::Zero(), QuicTime::Zero());
       DCHECK(!HasRetransmittableFrames(*it));
     }
   }