From 337f36602a553ecb937c041a27b1c7270571c647 Mon Sep 17 00:00:00 2001 From: sebdet Date: Fri, 6 Sep 2019 18:11:51 +0200 Subject: Fix sonar issues FIx some issues reported incorrectly by sonar for the new javascript code Issue-ID: CLAMP-425 Change-Id: I485b727c3a6007c0f0f9301fcda526b028d6251f Signed-off-by: sebdet --- ui-react/src/api/LoopService.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'ui-react/src/api/LoopService.js') diff --git a/ui-react/src/api/LoopService.js b/ui-react/src/api/LoopService.js index eece20c96..e2e234821 100644 --- a/ui-react/src/api/LoopService.js +++ b/ui-react/src/api/LoopService.js @@ -22,7 +22,7 @@ export default class LoopService { static getLoopNames() { - return fetch('/restservices/clds/v2/loop/getAllNames', { method: 'GET', credentials: 'same-origin', }) + return fetch('/restservices/clds/v2/loop/getAllNames', { method: 'GET', credentials: 'same-origin' }) .then(function (response) { console.debug("GetLoopNames response received: ", response.status); if (response.ok) { @@ -42,9 +42,9 @@ export default class LoopService { return fetch('/restservices/clds/v2/loop/' + loopName, { method: 'GET', headers: { - "Content-Type": "application/json", + "Content-Type": "application/json" }, - credentials: 'same-origin', + credentials: 'same-origin' }) .then(function (response) { console.debug("GetLoop response received: ", response.status); @@ -64,7 +64,7 @@ export default class LoopService { static getSvg(loopName) { return fetch('/restservices/clds/v2/loop/svgRepresentation/' + loopName, { method: 'GET', - credentials: 'same-origin', + credentials: 'same-origin' }) .then(function (response) { console.debug("svgRepresentation response received: ", response.status); @@ -86,9 +86,9 @@ export default class LoopService { method: 'POST', credentials: 'same-origin', headers: { - "Content-Type": "application/json", + "Content-Type": "application/json" }, - body: JSON.stringify(jsonData), + body: JSON.stringify(jsonData) }) .then(function (response) { console.debug("updateMicroservicePolicy response received: ", response.status); @@ -110,9 +110,9 @@ export default class LoopService { method: 'POST', credentials: 'same-origin', headers: { - "Content-Type": "application/json", + "Content-Type": "application/json" }, - body: JSON.stringify(jsonData), + body: JSON.stringify(jsonData) }) .then(function (response) { console.debug("updateOperationalPolicies response received: ", response.status); @@ -134,9 +134,9 @@ export default class LoopService { method: 'POST', credentials: 'same-origin', headers: { - "Content-Type": "application/json", + "Content-Type": "application/json" }, - body: JSON.stringify(jsonData), + body: JSON.stringify(jsonData) }) .then(function (response) { console.debug("updateGlobalProperties response received: ", response.status); -- cgit 1.2.3-korg