[chore]: Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 (#1975)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-07-10 12:58:06 +01:00 committed by GitHub
commit a29b5affc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 794 additions and 438 deletions

View file

@ -33,7 +33,7 @@ var (
return !inOneof(ox) && inOneof(oy)
}
// Fields in disjoint oneof sets are sorted by declaration index.
if ox != nil && oy != nil && ox != oy {
if inOneof(ox) && inOneof(oy) && ox != oy {
return ox.Index() < oy.Index()
}
// Fields sorted by field number.