-
Notifications
You must be signed in to change notification settings - Fork 54
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
Resolve latest release issue #393
Resolve latest release issue #393
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have any tests to cover these cases at the moment?
@@ -49,7 +49,7 @@ public MatlabInstaller(String id) { | |||
} | |||
|
|||
public String getRelease() { | |||
return this.release.trim(); | |||
return this.release; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What cases caused the removal of the trim
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see, it's just trimmed later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, mostly just that it seems weird for a getter to change the value of the property. We were already trimming later so I just removed it.
Not sure what's going on with the flaky macos test |
7afc938
into
2.16.0-SNAPSHOT-Qualification
Resolve latest release and use that to determine name of MATLAB folder. Also revert change where I bumped version in
pom.xml
because Vahila said that's part of the release process.#392