Hi all
I have a method like
String[] getThings(){ return {}; } -I
String[] getThings(){ return {null}; } -II
What is the difference between both of these ?
II version is throwing me exception since i am doing sort() on Returned Array converted into Collection but not 1st one.