diff --git a/features/featureflag_string.go b/features/featureflag_string.go index d170b69f4..8ea5c2c39 100644 --- a/features/featureflag_string.go +++ b/features/featureflag_string.go @@ -2,7 +2,7 @@ package features -import "fmt" +import "strconv" const _FeatureFlag_name = "unusedAllowAccountDeactivationAllowKeyRolloverResubmitMissingSCTsOnlyUseAIAIssuerURLAllowTLS02ChallengesGenerateOCSPEarlyReusePendingAuthzCountCertificatesExactRandomDirectoryEntryIPv6FirstDirectoryMetaAllowRenewalFirstRLRecheckCAAUDPDNSROCACheckWildcardDomainsEnforceChallengeDisable" @@ -10,7 +10,7 @@ var _FeatureFlag_index = [...]uint16{0, 6, 30, 46, 69, 84, 104, 121, 138, 160, 1 func (i FeatureFlag) String() string { if i < 0 || i >= FeatureFlag(len(_FeatureFlag_index)-1) { - return fmt.Sprintf("FeatureFlag(%d)", i) + return "FeatureFlag(" + strconv.FormatInt(int64(i), 10) + ")" } return _FeatureFlag_name[_FeatureFlag_index[i]:_FeatureFlag_index[i+1]] }