1
0
Fork 0

Merge remote-tracking branch 'upstream/master'

master
pejobo 2015-06-21 15:26:55 +02:00
commit 822c4c9593
1 changed files with 5 additions and 0 deletions

View File

@ -84,6 +84,11 @@ public class Example {
issue.transition()
.field(Field.ASSIGNEE, "batman")
.execute("Open");
/* Assign the issue */
issue.update()
.field(Field.ASSIGNEE, "batman")
.execute();
/* Add two comments, with one limited to the developer role. */
issue.addComment("No problem. We'll get right on it!");