From: anushadasari Date: Mon, 2 Sep 2019 11:37:26 +0000 (+0530) Subject: Semicolon at the end of the Statement and Remove trailing whitespaces at the end... X-Git-Tag: 5.0.3~16^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ac281ff82fe50f9c043b2605d9843748f7aa1458;p=vid.git Semicolon at the end of the Statement and Remove trailing whitespaces at the end of this line In JavaScript, the semicolon (;) is optional as a statement separator, but omitting semicolons can be confusing, and lead to unexpected results because a semicolon is implicitly inserted at the end of each line. Issue-ID: VID-604 Change-Id: I850ee4d00e2f263105a15a5778c11cfb2e526986 Signed-off-by: anushadasari --- diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js b/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js index 1e289f534..c3c55df59 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js @@ -50,7 +50,6 @@ appDS2.constant("PARAMETER", (function() { LESS_OR_EQUAL: "less_or_equal", DISPLAY_NAME: "displayName", CHECKBOX:'checkbox', - FILE:'file' - + FILE:'file' }; -})()) +})());