[Swift 5] Change to draggingSource in draggingEntered

In func draggingEntered the code :

if sender.draggingSource === self {
return .None
}

doesn’t work anymore. Use

if sender.draggingSource as AnyObject === self {
return
}

instead.