From bfca7a84bec815da594f1d12558535ed06d2490b Mon Sep 17 00:00:00 2001
From: 沙世明 <shashiming@prec-tech.com>
Date: 星期二, 13 九月 2022 09:57:32 +0800
Subject: [PATCH] 本地提交备份
---
force-app/main/default/classes/NFM402Batch.cls | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/force-app/main/default/classes/NFM402Batch.cls b/force-app/main/default/classes/NFM402Batch.cls
index cb83755..ab01bfe 100644
--- a/force-app/main/default/classes/NFM402Batch.cls
+++ b/force-app/main/default/classes/NFM402Batch.cls
@@ -1,11 +1,8 @@
global class NFM402Batch implements Database.Batchable<sObject>, Database.AllowsCallouts {
public String query;
- // public BatchIF_Log__c iflog;
global NFM402Batch() {
this.query = query;
- // iflog = new BatchIF_Log__c();
- // iflog.Type__c = 'NFM402Batch';
}
global Database.QueryLocator start(Database.BatchableContext bc) {
@@ -32,7 +29,6 @@
for (String id : tempids ) {
ids.add(id);
}
- // iflog.Log__c = 'ids '+ids;
try {
if (ids.size()>0) {
@@ -40,11 +36,8 @@
}
}
catch (Exception e) {
- // iflog.Log__c += 'e:: '+e.getMessage();
- // iflog.Log__c += 'e:getCause: '+e.getCause();
System.debug(e.getStackTraceString());
}
- // insert iflog;
}
--
Gitblit v1.9.1