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

dummy commit just to check something on GitHub #55

Closed
wants to merge 2 commits into from

Conversation

ccreutzi
Copy link
Member

This should only be here for a few minutes and then be closed. Please ignore.

.github/workflows/ci.yml Outdated Show resolved Hide resolved
Comment on lines +122 to +129
if isempty(nvp.Tools)
this.Tools = [];
this.FunctionsStruct = [];
this.FunctionNames = [];
else
this.Tools = nvp.Tools;
[this.FunctionsStruct, this.FunctionNames] = functionAsStruct(nvp.Tools);
end
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's just duplicating stiuff form above.

Suggested change
if isempty(nvp.Tools)
this.Tools = [];
this.FunctionsStruct = [];
this.FunctionNames = [];
else
this.Tools = nvp.Tools;
[this.FunctionsStruct, this.FunctionNames] = functionAsStruct(nvp.Tools);
end
if ~isempty(nvp.Tools)
this.Tools = nvp.Tools;
[this.FunctionsStruct, this.FunctionNames] = functionAsStruct(nvp.Tools);
else
this.Tools = [];
this.FunctionsStruct = [];
this.FunctionNames = [];
end

@ccreutzi
Copy link
Member Author

Closing the dummy commit, was just to showcase a GitHub feature.

@ccreutzi ccreutzi closed this Jul 24, 2024
@ccreutzi ccreutzi deleted the dummy-demo-dont-merge branch July 24, 2024 08:48
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

Successfully merging this pull request may close these issues.

1 participant