Remove unnecessary imports

This commit is contained in:
Sam Brannen
2015-07-27 13:06:54 +02:00
parent b6c0e7cba3
commit 40ea9ffd63
2 changed files with 4 additions and 5 deletions

View File

@@ -25,7 +25,6 @@ import org.springframework.mock.web.MockHttpSession;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.RequestBuilder;
import org.springframework.test.web.servlet.ResultActions;
import org.springframework.test.web.servlet.htmlunit.webdriver.WebConnectionHtmlUnitDriver;
import org.springframework.util.Assert;
import com.gargoylesoftware.htmlunit.WebClient;
@@ -52,7 +51,7 @@ import com.gargoylesoftware.htmlunit.WebResponse;
* @author Rob Winch
* @author Sam Brannen
* @since 4.2
* @see WebConnectionHtmlUnitDriver
* @see org.springframework.test.web.servlet.htmlunit.webdriver.WebConnectionHtmlUnitDriver
*/
public final class MockMvcWebConnection implements WebConnection {

View File

@@ -19,7 +19,6 @@ package org.springframework.test.web.servlet.htmlunit.webdriver;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
import org.springframework.test.web.servlet.htmlunit.MockMvcWebConnection;
import org.springframework.util.Assert;
import com.gargoylesoftware.htmlunit.BrowserVersion;
@@ -30,8 +29,9 @@ import com.gargoylesoftware.htmlunit.WebConnection;
* {@code WebConnectionHtmlUnitDriver} enables configuration of the
* {@link WebConnection} for an {@link HtmlUnitDriver} instance.
*
* <p>This is useful because it allows a {@link MockMvcWebConnection} to
* be injected.
* <p>This is useful because it allows a
* {@link org.springframework.test.web.servlet.htmlunit.MockMvcWebConnection
* MockMvcWebConnection} to be injected.
*
* @author Rob Winch
* @author Sam Brannen