This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 686d2b12 authored by Michael Breu's avatar Michael Breu
Browse files

fixing PMD

parent 5cab0992
Branches
2 merge requests!132Bringing July Release to production,!128Fixing #315 and #319
......@@ -25780,7 +25780,7 @@
"text-table": "0.2.0",
"tree-kill": "1.2.2",
"tslib": "2.3.1",
"webpack": "5.70.0",
"webpack": "5.66.0",
"webpack-dev-middleware": "5.3.0",
"webpack-dev-server": "4.7.3",
"webpack-merge": "5.8.0",
......@@ -23,7 +23,7 @@ public class GitSearchOAuth2AuthenticationToken extends OAuth2AuthenticationToke
.getAuthorizationExchange()
.getAuthorizationRequest()
.getAttribute(GitSearchOAuth2AuthorizationRequestRepository.REFERER_ATTRIBUTE);
redirectURL = configuredRedirectURL!=null?configuredRedirectURL:"/";
redirectURL = configuredRedirectURL==null?"/":configuredRedirectURL;
}
public String getRedirectURL() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment