-
Notifications
You must be signed in to change notification settings - Fork 14
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
#72 simplify the jca versioning support #77
Conversation
@rjwills28 could you have a look at this PR ( I am hoping to include it in the next 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.
I've tested locally and this looks good! I've just highlighted some very minor formatting issues which can be ignored if not deemed too important at this stage.
src/core/gov/aps/jca/Version.java
Outdated
* @return version number | ||
*/ | ||
private String getVersion() { | ||
return version; |
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.
Minor formatting inconsistency - this line and the following should be spaced not tabbed.
src/core/gov/aps/jca/JCALibrary.java
Outdated
@@ -125,12 +138,16 @@ protected JCALibrary() { | |||
|
|||
} | |||
|
|||
public String getVersion() { | |||
return versionProperties.getProperty("jca.version"); |
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.
Minor formatting inconsistency - this line and the following should be spaced not tabbed.
Thanks |
@rjwills28 I think I have fixed the formatting |
Hi @shroffk - is there any update on the new release of JCA? Thanks. |
The 2.4.10 release is done. I will not do a complete epics core Java release for now though. |
@shroffk - thanks for taking care of that! |
Removed the manually managed version numbers in the CAJContext and CAJServerContext.
Simplified the Version class to only support an automatically managed version string. Could not find any usage of the old Major, Minor,... fields. I have marked them as deprecated in case someone is still using Version class directly in their code.