Skip to content

Commit 3acc472

Browse files
committed
examples
1 parent 1a1cb3d commit 3acc472

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

force-app/main/default/classes/example/SOQL_Account.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
public inherited sharing class SOQL_Account extends SOQL implements SOQL.Selector {
2-
public final String MOCK_ID = 'SOQL_Account';
2+
public static final String MOCK_ID = 'SOQL_Account';
33

44
public static SOQL_Account query() {
55
return new SOQL_Account();

force-app/main/default/classes/example/SOQL_Contact.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
public inherited sharing class SOQL_Contact extends SOQL implements SOQL.Selector {
2-
public final String MOCK_ID = 'SOQL_Contact';
2+
public static final String MOCK_ID = 'SOQL_Contact';
33

44
public static SOQL_Contact query() {
55
return new SOQL_Contact();

force-app/main/default/classes/example/SOQL_Opportunity.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
public inherited sharing class SOQL_Opportunity extends SOQL implements SOQL.Selector {
2-
public final String MOCK_ID = 'SOQL_Opportunity';
2+
public static final String MOCK_ID = 'SOQL_Opportunity';
33

44
public static SOQL_Opportunity query() {
55
return new SOQL_Opportunity();

0 commit comments

Comments
 (0)