mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-08-08 04:05:00 -05:00
Fixed code smell 'Unexpected empty arrow function' reported by SonarQube.
This commit is contained in:
@@ -33,7 +33,7 @@ let pgAdmin = {
|
||||
];
|
||||
},
|
||||
},
|
||||
onPreferencesChange: ()=>{},
|
||||
onPreferencesChange: ()=>{/*This is intentional (SonarQube)*/},
|
||||
utils: {
|
||||
app_version_int: 1234,
|
||||
},
|
||||
@@ -53,7 +53,7 @@ let alertify = jasmine.createSpyObj('alertify', {
|
||||
'error': null,
|
||||
'confirm': null,
|
||||
'alert': {
|
||||
'set': ()=>{},
|
||||
'set': ()=>{/*This is intentional (SonarQube)*/},
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user