Skip to content

Commit

Permalink
Fixed creepy whitespace after self-review
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Oct 8, 2023
1 parent ac29649 commit 9f72851
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,15 +201,15 @@ public static ApplicationAssociate getCurrentInstance() {
}

public static ApplicationAssociate getInstance() {
return getInstance(FacesContext.getCurrentInstance());
return getInstance(FacesContext.getCurrentInstance());
}

public static ApplicationAssociate getInstance(FacesContext facesContext) {
if (facesContext == null) {
return null;
}
}

return ApplicationAssociate.getInstance(facesContext.getExternalContext());
return ApplicationAssociate.getInstance(facesContext.getExternalContext());
}

public static ApplicationAssociate getInstance(ExternalContext externalContext) {
Expand Down

0 comments on commit 9f72851

Please sign in to comment.