How to fix this warning in swift 2 ?

Hi, after i installed swift 2 a waring appeared : Variable 'self' was written to, but never read



in my code : [weak self] url in

It seems you are capturing `self` but not using it inside the closure. Why don't you remove whole capturing `[weak self]`?

How to fix this warning in swift 2 ?
 
 
Q