I do not recommend this solution either, I happily use equation with hyperref
The only one I can come up with is this little strange one
\documentclass[a4paper]{article}
\usepackage{amsmath}
\usepackage[colorlinks]{hyperref}
%\let\equation\gather
%\let\endequation\endgather
\begin{document}
\begin{equation}
test \nonumber
\end{equation}
\begin{gather}
test
\end{gather}
\end{document}
without changing equation you'll get this warning:
pdfTeX warning (ext4): destination with the same identifier (name{eq
uation.0.1}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.19 \end{document}
Which is a pain to debug if you do not know that the combination of equation + \nonumber is problematic under hyperref
If you know they are problematic, it is just a matter of finding them and removing \nonumber and replacing equation with equation*
I'd like to know if there are others reasons