mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Reinstate protected XpathRequestMatchers constructor
This commit makes the XpathRequestMatchers constructor protected again in case users have extended this class.
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user