Skip to content
Snippets Groups Projects
Commit 3f3d815b authored by Johannes Mey's avatar Johannes Mey
Browse files

new lines are no longer indented, this is a temp fix.

parent 4f9ecf22
No related branches found
No related tags found
1 merge request!9Resolve "Indentation wrong when creating a new line"
Pipeline #12057 passed
...@@ -89,6 +89,12 @@ public class AspectBlock extends AbstractBlock { ...@@ -89,6 +89,12 @@ public class AspectBlock extends AbstractBlock {
return myNode.getFirstChildNode() == null; return myNode.getFirstChildNode() == null;
} }
@Override
public boolean isIncomplete() {
// FIXME this is wrong, but a real fix would require a complete rewrite overriding more methods
return true;
}
private static class AroundBlockBlock extends LeafBlock { private static class AroundBlockBlock extends LeafBlock {
private final TextRange myRange; private final TextRange myRange;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment