As part of making the CssParser class public, the following method, which is only used by our internal unit tests, was mistakenly also made public:
/**
* Convenience method for unit tests.
* @param property the property
* @param expr the expression
* @return the parsed value
*/
public ParsedValue parseExpr(String property, String expr)
It should not be part of the public API.
This was discovered during the review ofJDK-8163384 to cleanup javadoc changes.
/**
* Convenience method for unit tests.
* @param property the property
* @param expr the expression
* @return the parsed value
*/
public ParsedValue parseExpr(String property, String expr)
It should not be part of the public API.
This was discovered during the review of