Skip to content
Snippets Groups Projects

Issuedir

Merged Jack MacLauchlan CS2015 requested to merge issuedir into master
6 files
+ 152
44
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -17,7 +17,7 @@ public class CommandShow implements Command {
repository.getIssues().forEach(issue -> {
if (issue.getOriginalHash().equals(id)) {
String status = issue.isOpen() ? "Open" : "Closed";
String status = issue.isopen() ? "Open" : "Closed";
System.out.println("Issue title: " + issue.getTitle() + "\n" +
"Issue Description: " + issue.getDescription() + "\n" +
Loading