There's always a need to return something when your method has a return type. If you don't know what to return at first then return a default value.
Also, always take into account the warnings the compiler throws at you (there is one for functions not returning anything when their signature contains a return type). As the old saying goes: a compiler warning ignored today is a catastrophic crash in production tomorrow.