Пример #1
0
 private void notify(PullRequest pullRequest) {
   try {
     gntpClient.notify(
         create(
             pullRequest.user ? pullRequestWithUserNotification : pullRequestNotification,
             pullRequest),
         5,
         SECONDS);
   } catch (InterruptedException e) {
     System.err.println("Notification interrupted");
   }
 }