mirror of https://github.com/apache/druid.git
Suppress false-alarm inspection. (#9297)
I think a mid-air collision between #9260 and #9293 has led to master being unable to pass insepctions in TeamCity. Hopefully this fixes it.
This commit is contained in:
parent
204ba9966f
commit
7d91b8f281
|
@ -52,6 +52,7 @@ final class LimitedSequence<T> extends YieldingSequenceBase<T>
|
|||
return new LimitedYielder<>(subYielder, limitedAccumulator);
|
||||
}
|
||||
|
||||
@SuppressWarnings("InnerClassMayBeStatic") // False alarm: flagged by IDEA inspections, but can't actually be static.
|
||||
private class LimitedYielder<OutType> implements Yielder<OutType>
|
||||
{
|
||||
private final Yielder<OutType> subYielder;
|
||||
|
|
Loading…
Reference in New Issue