function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Phil WPhil W 

Why are global names case sensitive when apex names are case insensitive?

We created a global Apex class accidentally starting with a lower case letter, and once this was put in a managed package and released, we could not correct this. So:
 
global myApexClass {
    ...
}

Cannot be corrected to:
global MyApexClass {
    ...
}

Because during package update we get an error.

Salesforce, please be consistent with case-insensitivity! You are forcing ugliness on us!​