Skip to content

Commit a201faf

Browse files
committed
Fikset javadoc token
Fjernet debug statement
1 parent fa55e57 commit a201faf

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/platform-utility/CustomMetadataDAO/classes/CustomMetadataDAO.cls

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public inherited sharing class CustomMetadataDAO {
4141
* @author Kenneth Soerensen ([email protected]), NAV
4242
* @since 0.1.0, August 2024
4343
* @param query The SOQL query string to fetch the Custom Metadata Records.
44-
* @returns Return a list of Custom Metadata Records as `List<SObject>`
44+
* @return Return a list of Custom Metadata Records as `List<SObject>`
4545
* @example
4646
* List<CustomMetadata__mdt> nameCMList = (List<CustomMetadata__mdt>) new CustomMetadataDAO()
4747
* .getCustomMetadataRecords(
@@ -56,12 +56,6 @@ public inherited sharing class CustomMetadataDAO {
5656
* }
5757
*/
5858
public List<SObject> getCustomMetadataRecords(String query) {
59-
System.debug(LoggingLevel.DEBUG, 'query: ' + query);
60-
System.debug(
61-
LoggingLevel.DEBUG,
62-
'customMetadataRecordsMap: ' + customMetadataRecordsMap
63-
);
64-
6559
if (!customMetadataRecordsMap.containsKey(query)) {
6660
customMetadataRecordsMap.put(query, Database.query(query));
6761
}

0 commit comments

Comments
 (0)