Skip to content

Commit

Permalink
Updated if statemens
Browse files Browse the repository at this point in the history
  • Loading branch information
cnstoll committed Jul 11, 2014
1 parent a40af92 commit 8deef1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ import CoreData

class InwardLink: Link {
override class func shouldUseSubEntityRecordClassToRepresentData(dict : [NSObject : AnyObject]!) -> Bool {
let inwardIssue : AnyObject! = dict["inwardIssue"]

if (inwardIssue) {
if let inwardIssue : AnyObject! = dict["inwardIssue"] {
return true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ import CoreData
class OutwardLink: Link {

override class func shouldUseSubEntityRecordClassToRepresentData(dict : [NSObject : AnyObject]!) -> Bool {
let outwardIssue : AnyObject! = dict["outwardIssue"]

if (outwardIssue) {
if let outwardIssue : AnyObject! = dict["outwardIssue"] {
return true
}

Expand Down

0 comments on commit 8deef1d

Please sign in to comment.