Skip to content

Commit

Permalink
Coverity: removed useless semicolon which ends statement earlier
Browse files Browse the repository at this point in the history
Reviewed-By: Tomas Krizek <[email protected]>
  • Loading branch information
Pavel Vomacka authored and Martin Babinsky committed Jan 18, 2017
1 parent a69c444 commit 9d2ef64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install/ui/src/freeipa/widgets/LoginScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,10 +339,10 @@ define(['dojo/_base/declare',
set_login_aside_text: function() {
var aside = "";
if (this.password_enabled()) {
aside += "<p>"+this.form_auth_msg;+"<p/>";
aside += "<p>"+this.form_auth_msg+"<p/>";
}
if (this.kerberos_enabled()) {
aside += "<p>"+this.kerberos_msg;+"<p/>";
aside += "<p>"+this.kerberos_msg+"<p/>";
}
this.set('aside', aside);
},
Expand Down

0 comments on commit 9d2ef64

Please sign in to comment.