mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
CompletionResultSet: warnings fixed
GitOrigin-RevId: 4293d81be29642f33a28759d4aa9e250e9fac8a6
This commit is contained in:
committed by
intellij-monorepo-bot
parent
13d082389a
commit
4110666a62
+2
-2
@@ -58,13 +58,13 @@ public abstract class CompletionResultSet implements Consumer<LookupElement> {
|
||||
|
||||
public void startBatch() {
|
||||
if (myConsumer instanceof BatchConsumer) {
|
||||
((BatchConsumer)myConsumer).startBatch();
|
||||
((BatchConsumer<?>)myConsumer).startBatch();
|
||||
}
|
||||
}
|
||||
|
||||
public void endBatch() {
|
||||
if (myConsumer instanceof BatchConsumer) {
|
||||
((BatchConsumer)myConsumer).endBatch();
|
||||
((BatchConsumer<?>)myConsumer).endBatch();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user