Skip to content

Commit ad91727

Browse files
committed
Removed unused import
1 parent 38c57c7 commit ad91727

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/save-and-restore/app/src/main/java/org/phoebus/applications/saveandrestore/authentication/SaveAndRestoreAuthenticationProvider.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
package org.phoebus.applications.saveandrestore.authentication;
2121

22-
import org.phoebus.applications.saveandrestore.Preferences;
2322
import org.phoebus.applications.saveandrestore.ui.SaveAndRestoreService;
2423
import org.phoebus.security.authorization.ServiceAuthenticationProvider;
2524
import org.phoebus.security.tokens.AuthenticationScope;
@@ -33,7 +32,7 @@
3332
public class SaveAndRestoreAuthenticationProvider implements ServiceAuthenticationProvider {
3433

3534
@Override
36-
public void authenticate(String username, String password){
35+
public void authenticate(String username, String password) {
3736
SaveAndRestoreService saveAndRestoreService = SaveAndRestoreService.getInstance();
3837
try {
3938
saveAndRestoreService.authenticate(username, password);
@@ -52,7 +51,7 @@ public void logout(String token) {
5251
}
5352

5453
@Override
55-
public AuthenticationScope getAuthenticationScope(){
54+
public AuthenticationScope getAuthenticationScope() {
5655
return AuthenticationScope.SAVE_AND_RESTORE;
5756
}
5857

0 commit comments

Comments
 (0)