Skip to content

Commit

Permalink
#82: update naming, add more details to appIssueCard
Browse files Browse the repository at this point in the history
  • Loading branch information
iam-flo committed Sep 18, 2024
1 parent 128f0e4 commit 71a43f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class PullRequest extends BaseGitServiceEntity {
private String url;

@NonNull
private int number;
private int prNumber;

/**
* State of the PullRequest.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public PullRequest convert(@NonNull GHPullRequest source) {
pullRequest.setTitle(source.getTitle());
pullRequest.setUrl(source.getHtmlUrl().toString());
pullRequest.setState(state);
pullRequest.setNumber(source.getNumber());
pullRequest.setPrNumber(source.getNumber());
pullRequest.setPullRequestLabels(convertLabels(source.getLabels()));
try {
pullRequest.setAdditions(source.getAdditions());
Expand Down

0 comments on commit 71a43f8

Please sign in to comment.