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

Increase visibility of exported Failure Cause methods #154

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
<suppress checks=".+"
files="InjectedTest.java"/>
<suppress checks="MagicNumber" files="BuildLogIndication.java"/>
<suppress checks="MagicNumber" files="FoundFailureCause.java"/>
</suppressions>
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public String getUrlName() {
*
* @return the FoundFailureCauses.
*/
@Exported
@Exported(visibility = 2)
public List<FoundFailureCause> getFoundFailureCauses() {
return foundFailureCauses;
}
Expand Down Expand Up @@ -205,7 +205,7 @@ public Run getBuild() {
*
* @return the FailureCauseDisplayData.
*/
@Exported
@Exported(visibility = 2)
public FailureCauseDisplayData getFailureCauseDisplayData() {
FailureCauseDisplayData failureCauseDisplayData
= getDownstreamData(this, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public FoundFailureCause(final FailureCause originalCause, final List<FoundIndic
*
* @return the id.
*/
@Exported
@Exported(visibility = 3)
public String getId() {
return id;
}
Expand All @@ -93,7 +93,7 @@ public String getId() {
*
* @return the name.
*/
@Exported
@Exported(visibility = 3)
public String getName() {
return name;
}
Expand All @@ -103,7 +103,7 @@ public String getName() {
*
* @return the description.
*/
@Exported
@Exported(visibility = 3)
public String getDescription() {
return description;
}
Expand All @@ -113,7 +113,7 @@ public String getDescription() {
*
* @return the categories.
*/
@Exported
@Exported(visibility = 3)
public List<String> getCategories() {
return categories;
}
Expand Down
Loading