Fixed code smell 'Unexpected empty arrow function' reported by SonarQube.

This commit is contained in:
Akshay Joshi
2022-01-12 17:32:20 +05:30
parent d2457f2a1d
commit c98fb887cc
94 changed files with 1023 additions and 1023 deletions

View File

@@ -22,11 +22,11 @@ describe('CodeMirror', ()=>{
},
cmObj = jasmine.createSpyObj('cmObj', {
'getValue':()=>'',
'setValue': ()=>{},
'refresh': ()=>{},
'setOption': ()=>{},
'removeKeyMap': ()=>{},
'addKeyMap': ()=>{},
'setValue': ()=>{/*This is intentional (SonarQube)*/},
'refresh': ()=>{/*This is intentional (SonarQube)*/},
'setOption': ()=>{/*This is intentional (SonarQube)*/},
'removeKeyMap': ()=>{/*This is intentional (SonarQube)*/},
'addKeyMap': ()=>{/*This is intentional (SonarQube)*/},
'getWrapperElement': document.createElement('div'),
});
beforeEach(()=>{