Deprecate gfe2_reloadable_flag_quic_bbr_use_available_min_rtt.

PiperOrigin-RevId: 312084990
Change-Id: Ic349f023beba1461a291766712ff83d7491da252
diff --git a/quic/core/congestion_control/bbr_sender.cc b/quic/core/congestion_control/bbr_sender.cc
index f150ec1..e5751cf 100644
--- a/quic/core/congestion_control/bbr_sender.cc
+++ b/quic/core/congestion_control/bbr_sender.cc
@@ -502,13 +502,10 @@
   if (!min_rtt_.IsZero()) {
     return min_rtt_;
   }
-  if (GetQuicReloadableFlag(quic_bbr_use_available_min_rtt)) {
-    // min_rtt could be available if the handshake packet gets neutered then
-    // gets acknowledged. This could only happen for QUIC crypto where we do not
-    // drop keys.
-    return rtt_stats_->MinOrInitialRtt();
-  }
-  return rtt_stats_->initial_rtt();
+  // min_rtt could be available if the handshake packet gets neutered then
+  // gets acknowledged. This could only happen for QUIC crypto where we do not
+  // drop keys.
+  return rtt_stats_->MinOrInitialRtt();
 }
 
 QuicByteCount BbrSender::GetTargetCongestionWindow(float gain) const {