Second attempt to fix boot-props fails

This commit is contained in:
Kris De Volder
2017-05-02 19:41:29 -07:00
parent d20284aa3e
commit 54998caff3

View File

@@ -150,7 +150,7 @@ public class YamlCompletionEngine implements ICompletionEngine {
return null;
}
private boolean isLesserIndentRelaxable(final SNode currentNode, final SNode contextNode) {
protected boolean isLesserIndentRelaxable(final SNode currentNode, final SNode contextNode) {
SChildBearingNode parent = currentNode.getParent();
while (parent!=null && parent!=contextNode) {
SNode lastChild = parent.getLastRealChild();