Skip to content

Commit

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

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

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

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

Expand Down

0 comments on commit 45a92cd

Please sign in to comment.