Skip to content

Commit 117982e

Browse files
committed
Fix visibility of getters in GHRequestedAction
1 parent 2b15fb4 commit 117982e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/kohsuke/github/GHRequestedAction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ GHRequestedAction wrap(GHRepository owner) {
3333
*
3434
* @return the identifier
3535
*/
36-
String getIdentifier() {
36+
public String getIdentifier() {
3737
return identifier;
3838
}
3939

@@ -42,7 +42,7 @@ String getIdentifier() {
4242
*
4343
* @return the label
4444
*/
45-
String getLabel() {
45+
public String getLabel() {
4646
return label;
4747
}
4848

@@ -51,7 +51,7 @@ String getLabel() {
5151
*
5252
* @return the description
5353
*/
54-
String getDescription() {
54+
public String getDescription() {
5555
return description;
5656
}
5757

0 commit comments

Comments
 (0)