return rootMessage;
}
public static JsonLocation fromConfigValue(ConfigValue configValue) {
ConfigOrigin configOrigin = configValue.origin();
return new JsonLocation(configValue, -1, configOrigin.lineNumber(), -1);
}
public static JsonNode pathAt(ObjectNode root, String path) {
if (path.indexOf('.') >= 0) {
JsonNode returnNode = root;