I have to remove duplicated objects in a List. It is a List from the object Blog that looks like this:
public class Blog { private String title; priv
You can use distinct to remove duplicates
List blogList = ....// add your list here blogList.stream().distinct().collect(Collectors.toList());