Reinstate protected XpathRequestMatchers constructor
This commit makes the XpathRequestMatchers constructor protected again in case users have extended this class.
This commit is contained in:
parent
f3cad9f685
commit
13cdb70f64
|
@ -58,7 +58,7 @@ public class XpathRequestMatchers {
|
|||
* formatting specifiers defined in {@link String#format(String, Object...)}
|
||||
* @throws XPathExpressionException if expression compilation failed
|
||||
*/
|
||||
XpathRequestMatchers(String expression, @Nullable Map<String, String> namespaces, Object... args)
|
||||
protected XpathRequestMatchers(String expression, @Nullable Map<String, String> namespaces, Object... args)
|
||||
throws XPathExpressionException {
|
||||
|
||||
this.xpathHelper = new XpathExpectationsHelper(expression, namespaces, args);
|
||||
|
|
Loading…
Reference in New Issue