Unnecessary interface modifier

This commit is contained in:
Lars Grefer
2019-08-09 00:42:35 +02:00
parent 40bee457f9
commit d9c1f03b84
23 changed files with 63 additions and 75 deletions

View File

@@ -17,6 +17,6 @@ package org.springframework.security.integration;
public interface UserRepository {
public void doSomething();
void doSomething();
}

View File

@@ -20,6 +20,6 @@ import org.springframework.security.access.prepost.PreAuthorize;
public interface TestService {
@PreAuthorize("someMethod.py")
public void someMethod();
void someMethod();
}