Skip to content

Commit

Permalink
Merge pull request #13480 from knutwannheden/typos
Browse files Browse the repository at this point in the history
Remove some unnecessary null statements
  • Loading branch information
sberyozkin authored Nov 26, 2020
2 parents c52d9b5 + e325dc8 commit d2c6d0f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/security-keycloak-authorization.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ As you can see from the source code below it is just a regular JAX-RS resource:
[source,java]
----
package org.acme.security.keycloak.authorization;;
package org.acme.security.keycloak.authorization;
import javax.inject.Inject;
import javax.ws.rs.GET;
Expand Down Expand Up @@ -149,7 +149,7 @@ The source code for the `/api/admin` endpoint is also very simple:
[source,java]
----
package org.acme.security.keycloak.authorization;;
package org.acme.security.keycloak.authorization;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class ClientAndServerCallsTest {

protected static final Duration TIMEOUT = Duration.ofSeconds(5);
private FakeServiceClient client = new FakeServiceClient();;
private FakeServiceClient client = new FakeServiceClient();

@Test
public void oneToOneSuccess() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class LazyAuthRolesAllowedJaxRsTestCase {
TestIdentityController.class,
UnsecuredSubResource.class)
.addAsResource(new StringAsset("quarkus.http.auth.proactive=false\n"),
"application.properties"));;
"application.properties"));

@BeforeAll
public static void setupUsers() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ReplaceIdentityLazyAuthRolesAllowedJaxRsTestCase {
SecurityOverrideFilter.class,
UnsecuredSubResource.class)
.addAsResource(new StringAsset("quarkus.http.auth.proactive=false\n"),
"application.properties"));;
"application.properties"));

@BeforeAll
public static void setupUsers() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class LazyAuthRolesAllowedServletTestCase {
TestIdentityProvider.class,
TestIdentityController.class)
.addAsResource(new StringAsset("quarkus.http.auth.proactive=false\n"),
"application.properties"));;
"application.properties"));

@BeforeAll
public static void setupUsers() {
Expand Down

0 comments on commit d2c6d0f

Please sign in to comment.