String doubleValue = value.substring(0, value.length()-1);
return parseDouble(node, doubleValue, Double.MIN_VALUE, Double.MAX_VALUE);
}
catch(Exception e)
{
problems.add(new FXGInvalidPercentValueProblem(node.getDocumentPath(), node.getStartLine(),
node.getStartColumn(), name, value));
return defaultValue;
}
}