mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
cleanup
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user