mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
use more wide parameter type
GitOrigin-RevId: 3ff8fb258a3bac6197f874ee61710146fab03551
This commit is contained in:
committed by
intellij-monorepo-bot
parent
2ee67f4761
commit
0c2c7ca340
@@ -8,6 +8,7 @@ import gnu.trove.TObjectIntHashMap;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.io.DataOutput;
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
@@ -38,7 +39,7 @@ class FileLocalStringEnumerator implements AbstractStringEnumerator {
|
||||
return myStrings.get(idx - 1);
|
||||
}
|
||||
|
||||
void write(@NotNull DataOutputStream stream) throws IOException {
|
||||
void write(@NotNull DataOutput stream) throws IOException {
|
||||
assert myEnumerates != null;
|
||||
DataInputOutputUtil.writeINT(stream, myStrings.size());
|
||||
byte[] buffer = IOUtil.allocReadWriteUTFBuffer();
|
||||
|
||||
Reference in New Issue
Block a user