mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Corrected signatures, pass indicator as constructor parameter
This commit is contained in:
+1
-1
@@ -63,7 +63,7 @@ public abstract class AbstractNewLineBlocksIteratorTest extends LightPlatformCod
|
||||
Document document = PsiDocumentManager.getInstance(getProject()).getDocument(myFile);
|
||||
Assert.assertNotNull(document);
|
||||
|
||||
return new NewLineBlocksIterator(root, document, null);
|
||||
return new NewLineBlocksIterator(root, document);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -78,6 +78,6 @@ public class NewLineBlocksIteratorTest extends AbstractNewLineBlocksIteratorTest
|
||||
TestFormattingModel model = new TestFormattingModel(text);
|
||||
Document document = model.getDocument();
|
||||
TestBlock block = new FormattingModelXmlReader(model).readTestBlock(getTestDataPath(), getFileName() + ".xml");
|
||||
return new NewLineBlocksIterator(block, document, null);
|
||||
return new NewLineBlocksIterator(block, document);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user