mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
TextMate: support highlighting unregistered token types
GitOrigin-RevId: 24df4192eecc0d62c0e5c06c08d259643ca09c6a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
91a9434d63
commit
cd864d290a
@@ -13,13 +13,13 @@ import static com.intellij.openapi.editor.ex.util.SegmentArray.calcCapacity;
|
||||
* {@link IElementType} index and and restartability of the state (positive values are for initial state).
|
||||
*/
|
||||
public class ShortBasedStorage implements DataStorage {
|
||||
short[] myData;
|
||||
protected short[] myData;
|
||||
|
||||
public ShortBasedStorage() {
|
||||
myData = new short[INITIAL_SIZE];
|
||||
}
|
||||
|
||||
private ShortBasedStorage(short[] data) {
|
||||
protected ShortBasedStorage(short[] data) {
|
||||
myData = data;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user