From 3acc4728745b1d1b1242f76b58fb956a4e5c92ee Mon Sep 17 00:00:00 2001 From: Piotr PG Gajek Date: Thu, 9 Nov 2023 08:45:03 +0100 Subject: [PATCH] examples --- force-app/main/default/classes/example/SOQL_Account.cls | 2 +- force-app/main/default/classes/example/SOQL_Contact.cls | 2 +- force-app/main/default/classes/example/SOQL_Opportunity.cls | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/force-app/main/default/classes/example/SOQL_Account.cls b/force-app/main/default/classes/example/SOQL_Account.cls index 7532351..5771afe 100644 --- a/force-app/main/default/classes/example/SOQL_Account.cls +++ b/force-app/main/default/classes/example/SOQL_Account.cls @@ -1,5 +1,5 @@ public inherited sharing class SOQL_Account extends SOQL implements SOQL.Selector { - public final String MOCK_ID = 'SOQL_Account'; + public static final String MOCK_ID = 'SOQL_Account'; public static SOQL_Account query() { return new SOQL_Account(); diff --git a/force-app/main/default/classes/example/SOQL_Contact.cls b/force-app/main/default/classes/example/SOQL_Contact.cls index f4e753d..644f251 100644 --- a/force-app/main/default/classes/example/SOQL_Contact.cls +++ b/force-app/main/default/classes/example/SOQL_Contact.cls @@ -1,5 +1,5 @@ public inherited sharing class SOQL_Contact extends SOQL implements SOQL.Selector { - public final String MOCK_ID = 'SOQL_Contact'; + public static final String MOCK_ID = 'SOQL_Contact'; public static SOQL_Contact query() { return new SOQL_Contact(); diff --git a/force-app/main/default/classes/example/SOQL_Opportunity.cls b/force-app/main/default/classes/example/SOQL_Opportunity.cls index 234440e..034d147 100644 --- a/force-app/main/default/classes/example/SOQL_Opportunity.cls +++ b/force-app/main/default/classes/example/SOQL_Opportunity.cls @@ -1,5 +1,5 @@ public inherited sharing class SOQL_Opportunity extends SOQL implements SOQL.Selector { - public final String MOCK_ID = 'SOQL_Opportunity'; + public static final String MOCK_ID = 'SOQL_Opportunity'; public static SOQL_Opportunity query() { return new SOQL_Opportunity();