buli
2023-07-05 af7b716a60d889acea95560abba0e46eee008b8f
force-app/main/default/classes/LayoutDescriberHelper.cls
@@ -71,7 +71,6 @@
    fieldAPIToLabelMap = new Map<String, String>();
    layoutSections = new List<LayoutSection>();
    String theRespBody = getLayoutSchema(recordTypeId, objectType, userMode);
    System.debug('theRespBody = ' + theRespBody);
    Map<String, Object> layoutSection = (Map<String, Object>) JSON.deserializeUntyped(
      theRespBody
    );
@@ -302,7 +301,6 @@
      req.setHeader('Authorization', 'Bearer ' + UserInfo.getsessionid());
    }
    Http client = new Http();
    System.debug('req = ' + req);
    resp = client.send(req);
    system.debug('Schema Body:' + JSON.serialize(resp.getBody()));
    return resp.getBody();
@@ -359,6 +357,7 @@
  }
  public static Integer ControllerUtil() {
    Integer i = 0;
    return i;
  }
}