Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BaseApp get.PreferenceGroup fails if PreferenceGroup is not set #68

Open
rjackey opened this issue Apr 4, 2024 · 0 comments
Open

BaseApp get.PreferenceGroup fails if PreferenceGroup is not set #68

rjackey opened this issue Apr 4, 2024 · 0 comments
Assignees

Comments

@rjackey
Copy link
Member

rjackey commented Apr 4, 2024

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

1 participant