Skip to content

Commit

Permalink
Suppressed an Apex PMD violation in LoggerSObjectProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
jongpie committed Apr 23, 2024
1 parent b2a2ae1 commit c94363f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public without sharing class LoggerSObjectProxy {
* to mock field values directly during unit tests - even using tricks like JSON.deserialize() do not work. The `LoggerSObjectProxy.AuthSession`
* class acts as a substitute for a `Schema.AuthSession` record to provide the abilility to mock the data during unit & integration tests.
*/
@SuppressWarnings('PMD.FieldNamingConventions, PMD.VariableNamingConventions')
@SuppressWarnings('PMD.ExcessivePublicCount, PMD.FieldNamingConventions, PMD.VariableNamingConventions')
public class AuthSession {
public Id Id;
public String LoginType;
Expand Down

0 comments on commit c94363f

Please sign in to comment.