mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
avoid concrete class IntArrayList, use interface instead
GitOrigin-RevId: 0e8e08b55f58dfd3597e9999012e2746312a9e60
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d4fbdcc1f2
commit
d2437cbdc2
@@ -2,13 +2,14 @@
|
||||
package org.intellij.lang.regexp;
|
||||
|
||||
import it.unimi.dsi.fastutil.ints.IntArrayList;
|
||||
import it.unimi.dsi.fastutil.ints.IntList;
|
||||
|
||||
/**
|
||||
* @author Bas Leijdekkers
|
||||
*/
|
||||
public class RegExpMatch {
|
||||
|
||||
private final IntArrayList groups = new IntArrayList();
|
||||
private final IntList groups = new IntArrayList();
|
||||
|
||||
public void add(int start, int end) {
|
||||
groups.add(start);
|
||||
|
||||
Reference in New Issue
Block a user