Skip to content

Commit 35bdf1f

Browse files
committed
Unnecessary semicolon
1 parent d9c1f03 commit 35bdf1f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

samples/xml/jaas/src/integration-test/java/org/springframework/security/samples/pages/SecurePage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class SecurePage {
3232
public static LoginPage to(WebDriver driver, int port) {
3333
driver.get("http://localhost:" + port + "/secure");
3434
return PageFactory.initElements(driver, LoginPage.class);
35-
};
35+
}
3636

3737
private final WebDriver webDriver;
3838

samples/xml/ldap/src/integration-test/java/org/springframework/security/samples/pages/SecurePage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class SecurePage {
3232
public static LoginPage to(WebDriver driver, int port) {
3333
driver.get("http://localhost:" + port + "/secure");
3434
return PageFactory.initElements(driver, LoginPage.class);
35-
};
35+
}
3636

3737
private final WebDriver webDriver;
3838

web/src/main/java/org/springframework/security/web/server/header/XFrameOptionsServerHttpHeadersWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public enum Mode {
8080
* origin of the content and the frame are the same, this MUST be
8181
* treated as "DENY".
8282
*/
83-
SAMEORIGIN;
83+
SAMEORIGIN
8484
}
8585

8686
private static ServerHttpHeadersWriter createDelegate(Mode mode) {

0 commit comments

Comments
 (0)