File tree Expand file tree Collapse file tree
src/main/java/com/junichi11/netbeans/modules/github/issues/issue Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -507,6 +507,7 @@ private boolean closeReopen() {
507507 @ NbBundle .Messages ({
508508 "CreatePullRequestAction.confirmation.message=Do you want to change this issue to Pull Request?" ,
509509 "CreatePullRequestAction.error.message.same.branch=Another branch must be set." ,
510+ "CreatePullRequestAction.error.message.cannot.find.base.head.repositories=Can't find base or your head repositories." ,
510511 "CreatePullRequestAction.descriptor.title=Pull Request"
511512 })
512513 public class CreatePullRequestAction implements ActionListener {
@@ -548,6 +549,7 @@ public void run() {
548549 public void run () {
549550 try {
550551 if (baseRepositories .isEmpty () || headRepositories .isEmpty ()) {
552+ UiUtils .showErrorDialog (Bundle .CreatePullRequestAction_error_message_cannot_find_base_head_repositories ());
551553 return ;
552554 }
553555
You can’t perform that action at this time.
0 commit comments