mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
go.mod: Upgrade various golang.org/x/* dependencies
The Go team uses automation to generate unnecessary version bumps across all of these that make it impossible to upgrade them individually because they all mutually depend on the latest versions of each other, so unfortunately we have to accept the risk of updating all of these at once in order to update any one of them. Signed-off-by: Martin Atkins <mart@degeneration.co.uk>
This commit is contained in:
@@ -17,8 +17,9 @@ const _Quality_name = "ErroredNoChanges"
|
||||
var _Quality_index = [...]uint8{0, 7, 16}
|
||||
|
||||
func (i Quality) String() string {
|
||||
if i < 0 || i >= Quality(len(_Quality_index)-1) {
|
||||
idx := int(i) - 0
|
||||
if i < 0 || idx >= len(_Quality_index)-1 {
|
||||
return "Quality(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||
}
|
||||
return _Quality_name[_Quality_index[i]:_Quality_index[i+1]]
|
||||
return _Quality_name[_Quality_index[idx]:_Quality_index[idx+1]]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user