gfe-relnote: Deprecate --FLAGS_gfe2_reloadable_flag_quic_fix_config_rotation

PiperOrigin-RevId: 239859039
Change-Id: I8b7afafac87efc68942dcb0f1edc3cf04c717675
diff --git a/quic/core/crypto/quic_crypto_server_config.cc b/quic/core/crypto/quic_crypto_server_config.cc
index da84c24..0d2ddd9 100644
--- a/quic/core/crypto/quic_crypto_server_config.cc
+++ b/quic/core/crypto/quic_crypto_server_config.cc
@@ -1824,13 +1824,8 @@
 }
 
 bool QuicCryptoServerConfig::IsNextConfigReady(QuicWallTime now) const {
-  if (GetQuicReloadableFlag(quic_fix_config_rotation)) {
-    QUIC_RELOADABLE_FLAG_COUNT(quic_fix_config_rotation);
-    return !next_config_promotion_time_.IsZero() &&
-           !next_config_promotion_time_.IsAfter(now);
-  }
   return !next_config_promotion_time_.IsZero() &&
-         next_config_promotion_time_.IsAfter(now);
+         !next_config_promotion_time_.IsAfter(now);
 }
 
 QuicCryptoServerConfig::Config::Config()