address Codacy's concern about missing semicolons

This commit is contained in:
El RIDO 2019-09-14 09:53:22 +02:00
parent 713ce148a4
commit 1a42158dd1
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
3 changed files with 5 additions and 5 deletions

View file

@ -198,7 +198,7 @@ jQuery.Legacy = (function($) {
me.getInit = function()
{
return init;
}
};
/**
* returns the current status of the check
@ -210,7 +210,7 @@ jQuery.Legacy = (function($) {
me.getStatus = function()
{
return status;
}
};
/**
* init on application start, returns an all-clear signal
@ -245,7 +245,7 @@ jQuery.Legacy = (function($) {
// only if everything passed, we set the status to true
status = true;
}
};
return me;
})();