[fixes #825] Make methods in ReleaseInfo public

This commit is contained in:
Sibo Van Gool 2022-01-21 20:42:46 +01:00
parent ce9fbb914a
commit 33e5e6ce61

View File

@ -26,7 +26,7 @@ public class ReleaseInfo {
* Get the release tag from the GitHub release JSON object. * Get the release tag from the GitHub release JSON object.
* @return release tag (e.g. "15.0.3") * @return release tag (e.g. "15.0.3")
*/ */
private String getReleaseTag() { public String getReleaseTag() {
if (this.obj == null) return null; if (this.obj == null) return null;
String tag = this.obj.get("tag_name").toString(); // Release label is encapsulated in the 'tag_name'-tag String tag = this.obj.get("tag_name").toString(); // Release label is encapsulated in the 'tag_name'-tag
@ -46,7 +46,7 @@ public class ReleaseInfo {
* Get the release notes from the GitHub release JSON object. * Get the release notes from the GitHub release JSON object.
* @return release notes (this is the text that explains a certain GitHub release) * @return release notes (this is the text that explains a certain GitHub release)
*/ */
private String getReleaseNotes() { public String getReleaseNotes() {
if (this.obj == null) return null; if (this.obj == null) return null;
return this.obj.get("body").toString(); return this.obj.get("body").toString();
} }
@ -55,7 +55,7 @@ public class ReleaseInfo {
* Get the release URL from the GitHub release JSON object. * Get the release URL from the GitHub release JSON object.
* @return release URL (e.g. 'https://github.com/openrocket/openrocket/releases/tag/release-15.03') * @return release URL (e.g. 'https://github.com/openrocket/openrocket/releases/tag/release-15.03')
*/ */
private String getReleaseURL() { public String getReleaseURL() {
if (this.obj == null) return null; if (this.obj == null) return null;
return this.obj.get("html_url").toString(); return this.obj.get("html_url").toString();
} }