protected _profilesObject: UserDataProfilesObject | undefined;
protected get profilesObject(): UserDataProfilesObject {
const defaultProfile = this.createDefaultProfile();
const profiles: Array<Mutable<IUserDataProfile>> = [defaultProfile];
try {
for (const storedProfile of this.getStoredProfiles()) {
if (this.isInvalidProfile(storedProfile)) {
this.logService.warn('Skipping the invalid stored profile', storedProfile.location || storedProfile.name);