Skip to content

Commit

Permalink
doc: update readme for refactored api
Browse files Browse the repository at this point in the history
  • Loading branch information
ingomohr committed Jan 30, 2023
1 parent e6ec72f commit 876568c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ String jiraInstance = "https://my-name.atlassian.net/";
String jql = "project = MYPROJ ORDER BY Rank ASC";

JiraAccessConfig config = new JiraAccessConfig(jiraInstance, user, apiToken);
JiraIssuesJqlExecutor executor = new JiraIssuesJqlExecutor();
List<Issue> issues = executor.execute(config, jql);
JiraIssuesForJqlProvider provider = new JiraIssuesForJqlProvider();
List<Issue> issues = provider.getIssues(config, jql);
```

0 comments on commit 876568c

Please sign in to comment.