From 8f018fb4a17384a2fc409aed9186f03d1f226a08 Mon Sep 17 00:00:00 2001 From: Jonathan Gillespie Date: Tue, 15 Oct 2024 01:31:22 -0400 Subject: [PATCH] [WIP] --- .../core/main/configuration/classes/LoggerFieldMapper.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nebula-logger/core/main/configuration/classes/LoggerFieldMapper.cls b/nebula-logger/core/main/configuration/classes/LoggerFieldMapper.cls index b13c8359f..e7c2d754c 100644 --- a/nebula-logger/core/main/configuration/classes/LoggerFieldMapper.cls +++ b/nebula-logger/core/main/configuration/classes/LoggerFieldMapper.cls @@ -17,7 +17,7 @@ public without sharing class LoggerFieldMapper { * @param sourceRecord The source `SObject` record containing the data to copy * @param targetRecord The target `SObject` record that should have fields & field values appended */ - @SuppressWarnings('PMD.AvoidDebugStatements PMD.CyclomaticComplexity') + @SuppressWarnings('PMD.AvoidDebugStatements, PMD.CyclomaticComplexity') public static void mapFieldValues(SObject sourceRecord, SObject targetRecord) { if (sourceRecord == null || targetRecord == null) { return;