Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/AuthenticationManager.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/AuthenticationManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/AuthenticationManager.java b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/AuthenticationManager.java
index 5ba57a105f5..c00d42ddc77 100644
--- a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/AuthenticationManager.java
+++ b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/AuthenticationManager.java
@@ -54,7 +54,7 @@ public class AuthenticationManager implements IAuthenticationManager {
}
}
throw new OseeInvalidAuthenticationProtocolException(String.format("Invalid protocol [%s]",
- credential.getAuthenticationProtocol()));
+ credential.getAuthenticationProtocol()));
}
@Override
@@ -83,7 +83,7 @@ public class AuthenticationManager implements IAuthenticationManager {
}
}
throw new OseeInvalidAuthenticationProtocolException(String.format("Invalid protocol [%s]",
- credential.getAuthenticationProtocol()));
+ credential.getAuthenticationProtocol()));
}
private boolean isGuestLogin(OseeCredential credential) {

Back to the top