#1449 Fix for failing lazy fetch when logical property name starts with underscore

This commit is contained in:
rob bygrave
2018-07-15 13:49:05 +12:00
parent 117d22fd67
commit 93e603ca25
@@ -187,6 +187,6 @@ public abstract class DeployParser {
}
private boolean isWordStart(char ch) {
return Character.isLetter(ch);
return Character.isLetter(ch) || ch == UNDERSCORE;
}
}