Skip to content

Commit

Permalink
[WIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
jongpie committed Oct 15, 2024
1 parent 93aa220 commit f37cdec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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.CyclomaticComplexity')
@SuppressWarnings('PMD.AvoidDebugStatements PMD.CyclomaticComplexity')
public static void mapFieldValues(SObject sourceRecord, SObject targetRecord) {
if (sourceRecord == null || targetRecord == null) {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,7 @@ private class LogManagementDataSelector_Tests {
private class MockLogManagementDataSelector extends LogManagementDataSelector {
}

@SuppressWarnings('PMD.EmptyStatementBlock')
private class ExampleQueueable implements System.Queueable {
public void execute(System.QueueableContext context) {
// No-op
Expand Down

0 comments on commit f37cdec

Please sign in to comment.