Skip to content

Commit

Permalink
Increase visibility on FoundFailureCause exported methods
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartrowe committed Apr 1, 2022
1 parent 2a07c99 commit c733cad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
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 @@ -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

0 comments on commit c733cad

Please sign in to comment.