Browse Source

Add missing @Override annotations in AppServer.TestMappedLoginService

Change-Id: Ia728f1d033ecdf96b22945bc1ae38e5cb11064dd
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-4.8
Matthias Sohn 8 years ago
parent
commit
fc24c5e18d
  1. 2
      org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/AppServer.java

2
org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/AppServer.java

@ -185,10 +185,12 @@ public class AppServer {
putUser(username, new Password(password), new String[] { role });
}
@Override
protected String[] loadRoleInfo(KnownUser user) {
return null;
}
@Override
protected KnownUser loadUserInfo(String usrname) {
return null;
}

Loading…
Cancel
Save