Change case normalization of primitive from 'ID' to 'Id' to match existing behavior.

Change-Id: I7b3406a60bbc18dc2b1e441b8c0122452f709404
This commit is contained in:
Aaron Hurst 2022-12-02 05:34:54 +00:00
parent 16a492f66d
commit e9eafdde3e
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ public abstract class AbstractApexNode extends AbstractApexNodeBase implements A
"Datetime",
"Decimal",
"Double",
"ID",
"Id",
"Integer",
"Long",
"Object",

View File

@ -33,7 +33,7 @@ public enum DataType {
IndirectLookup(false),
Location(false),
LongTextArea(true),
Lookup(false, "ID"),
Lookup(false, "Id"),
MasterDetail(false),
MetadataRelationship(false),
MultiselectPicklist(true),