You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to PreferenceGroup being a string type, need to change get.PreferenceGroup away from empty char format:
function value = get.PreferenceGroup(app)
value = app.PreferenceGroup;
if isempty(value)
value = class(app);
end
value = matlab.lang.makeValidName(value);
end
to:
function value = get.PreferenceGroup(app)
value = app.PreferenceGroup;
if ~strlength(value)
value = class(app);
end
value = matlab.lang.makeValidName(value);
end
The text was updated successfully, but these errors were encountered:
Due to PreferenceGroup being a string type, need to change get.PreferenceGroup away from empty char format:
to:
The text was updated successfully, but these errors were encountered: