Skip to content

Commit

Permalink
Fix Whitespace missing before {
Browse files Browse the repository at this point in the history
  • Loading branch information
phansier committed Feb 23, 2018
1 parent 9e5ae56 commit 30048f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/com/github/mobile/api/model/Issue.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public org.eclipse.egit.github.core.Issue getOldModel() {
issue.setCreatedAt(created_at);
issue.setClosedAt(closed_at);
issue.setUpdatedAt(updated_at);

if (milestone != null){
issue.setMilestone(milestone.getOldModel());
}
Expand All @@ -92,4 +93,4 @@ public org.eclipse.egit.github.core.Issue getOldModel() {
}
return issue;
}
}
}

0 comments on commit 30048f0

Please sign in to comment.