Compatibility with HtmlUnit 2.51

Includes upgrade to Tomcat 9.0.50, Jetty 9.4.43, Jackson 2.12.4.

Closes gh-27147
This commit is contained in:
Juergen Hoeller
2021-07-09 13:22:34 +02:00
parent 297880d93e
commit acb2aec3dd
2 changed files with 11 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,7 +22,6 @@ import com.gargoylesoftware.htmlunit.WebConnection;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
@@ -35,15 +34,12 @@ import org.springframework.util.Assert;
*
* @author Rob Winch
* @author Sam Brannen
* @author Juergen Hoeller
* @since 4.2
* @see MockMvcHtmlUnitDriverBuilder
*/
public class WebConnectionHtmlUnitDriver extends HtmlUnitDriver {
@Nullable
private WebClient webClient;
public WebConnectionHtmlUnitDriver() {
}
@@ -72,9 +68,7 @@ public class WebConnectionHtmlUnitDriver extends HtmlUnitDriver {
*/
@Override
protected final WebClient modifyWebClient(WebClient webClient) {
this.webClient = super.modifyWebClient(webClient);
this.webClient = modifyWebClientInternal(this.webClient);
return this.webClient;
return modifyWebClientInternal(super.modifyWebClient(webClient));
}
/**
@@ -90,13 +84,12 @@ public class WebConnectionHtmlUnitDriver extends HtmlUnitDriver {
}
/**
* Return the current {@link WebClient}.
* Return the current {@link WebClient} in a public fashion.
* @since 4.3
*/
@Override
public WebClient getWebClient() {
Assert.state(this.webClient != null, "No WebClient set");
return this.webClient;
return super.getWebClient();
}
/**