What is the difference in:
Set<Object> linksSet = new LinkedHashSet<Object>();
LinkedHashSet<Object> linksSet = new LinkedHashSet<Object>();
Actually, I want to create a Set, that would hold the objects in the same order, I insert into it.
Many thanks for the help, in advance.