Apply corrections identified by SonarQube (#8457)
This commit is contained in:
@@ -165,7 +165,8 @@ export default class PerformanceMonitor {
|
||||
* @returns {string} a compound of the name and identifier if present
|
||||
*/
|
||||
private buildKey(name: string, id?: string): string {
|
||||
return `${name}${id ? `:${id}` : ''}`;
|
||||
const suffix = id ? `:${id}` : '';
|
||||
return `${name}${suffix}`;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user