bemace
bemace
Seems very strange that the Range class doesn't have an overlaps(Range) or intersects(Range) method. I expect it would essentially be ``` public boolean overlaps(Range other) { return isConnected(other) && !intersection(other).isEmpty();...
This started in 2.4.4 according to [this post](http://peedeebeesblog.blogspot.com/2015/07/grails-auto-class-reloading-broken-but.html) and is [occurring for me](http://stackoverflow.com/a/33106560/446591) in 3.0.4. I was running `grails run-app` from Windows command prompt. To reproduce, create a project named...