Unnecessary semicolon

This commit is contained in:
Lars Grefer 2019-08-09 00:43:13 +02:00
parent d9c1f03b84
commit 35bdf1f009
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ public class SecurePage {
public static LoginPage to(WebDriver driver, int port) {
driver.get("http://localhost:" + port + "/secure");
return PageFactory.initElements(driver, LoginPage.class);
};
}
private final WebDriver webDriver;

View File

@ -32,7 +32,7 @@ public class SecurePage {
public static LoginPage to(WebDriver driver, int port) {
driver.get("http://localhost:" + port + "/secure");
return PageFactory.initElements(driver, LoginPage.class);
};
}
private final WebDriver webDriver;

View File

@ -80,7 +80,7 @@ public class XFrameOptionsServerHttpHeadersWriter implements ServerHttpHeadersWr
* origin of the content and the frame are the same, this MUST be
* treated as "DENY".
*/
SAMEORIGIN;
SAMEORIGIN
}
private static ServerHttpHeadersWriter createDelegate(Mode mode) {