destroy action redirecting when I didn't tell it to

Hello,

I used scaffold to generate my initial code to manage some rows in a database, and I need to now change the behaviour of the destroy action. So, I removed the original destroy code, which was to delete the object and redirect back to the list action, and replaced it with an empty method.

This should now complain about a missing destroy view, since there isn't one, and the empty method will call render by default.

This doesn't happen, after calling destroy, the page is magically redirected to the list action, when none of my code is telling it to do so?

Why is that? Seems kinda inconsistent.

Thanks, Mike