1
0
Fork 0

Update readme with new add attachment functionality.

master
Kyle Chaplin 2013-08-24 13:18:45 -05:00
parent 9cdadfb1cf
commit 286591edd1
1 changed files with 4 additions and 0 deletions

View File

@ -139,6 +139,10 @@ public class Example {
put("value", "bar");
}})
.execute();
/* Add an attachment */
File file = new File("C:\\Users\\John\\Desktop\\screenshot.jpg");
issue.addAttachment(file);
/* And finally let's resolve it as incomplete. */
issue.transition()