This commit is contained in:
Alexey Kudravtsev
2010-09-23 18:47:29 +04:00
parent 97a6b14d20
commit b2334a3953
2 changed files with 2 additions and 3 deletions
@@ -64,8 +64,7 @@ public class LineMarkersPass extends ProgressableTextEditorHighlightingPass impl
int startOffset,
int endOffset,
boolean updateAll) {
super(project, document, GeneralHighlightingPass.PRESENTABLE_NAME, file,
false);
super(project, document, GeneralHighlightingPass.PRESENTABLE_NAME, file, false);
myStartOffset = startOffset;
myEndOffset = endOffset;
myUpdateAll = updateAll;
@@ -493,7 +493,7 @@ public class ContainerUtil {
@NotNull
public static <T> List<T> concat(@NotNull Iterable<? extends Collection<T>> list) {
final ArrayList<T> result = new ArrayList<T>();
List<T> result = new ArrayList<T>();
for (final Collection<T> ts : list) {
result.addAll(ts);
}