File tree 2 files changed +13
-13
lines changed
modules/core/src/main/scala/sangria
validation/rules/overlappingfields
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -434,18 +434,18 @@ class AstSchemaMaterializer[Ctx] private (
434
434
var iteration = 0
435
435
436
436
while ({
437
- prevCount = typeDefCache.size
438
- iteration += 1
437
+ prevCount = typeDefCache.size
438
+ iteration += 1
439
439
440
- typeDefCache.forEachValue {
441
- case o : ObjectLikeType [_, _] => o.fields
442
- case o : InputObjectType [_] => o.fields
443
- case _ => // do nothing
444
- }
440
+ typeDefCache.forEachValue {
441
+ case o : ObjectLikeType [_, _] => o.fields
442
+ case o : InputObjectType [_] => o.fields
443
+ case _ => // do nothing
444
+ }
445
445
446
- newCount = typeDefCache.size
447
- prevCount != newCount && iteration < 20
448
- }) ()
446
+ newCount = typeDefCache.size
447
+ prevCount != newCount && iteration < 20
448
+ }) ()
449
449
}
450
450
451
451
def getTypeFromExistingType (origin : MatOrigin , tpe : OutputType [_]): OutputType [Any ] = tpe match {
Original file line number Diff line number Diff line change @@ -81,9 +81,9 @@ object SortedArraySet {
81
81
members.set(into, first_from)
82
82
into += 1
83
83
while ({
84
- from += 1
85
- from < members.size() && members.get(from) == first_from
86
- }) ()
84
+ from += 1
85
+ from < members.size() && members.get(from) == first_from
86
+ }) ()
87
87
}
88
88
members.subList(into, members.size()).clear()
89
89
}
You can’t perform that action at this time.
0 commit comments