Replace unnecessary type parameters with <>
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / GetPostFeedCommand.java
index 1e2ca7d..d837145 100644 (file)
@@ -57,7 +57,7 @@ public class GetPostFeedCommand extends AbstractSoneCommand {
                int startPost = getInt(parameters, "StartPost", 0);
                int maxPosts = getInt(parameters, "MaxPosts", -1);
 
-               Collection<Post> allPosts = new HashSet<Post>();
+               Collection<Post> allPosts = new HashSet<>();
                allPosts.addAll(sone.getPosts());
                for (String friendSoneId : sone.getFriends()) {
                        Sone friendSone = getCore().getSone(friendSoneId);
@@ -69,7 +69,7 @@ public class GetPostFeedCommand extends AbstractSoneCommand {
                allPosts.addAll(getCore().getDirectedPosts(sone.getId()));
                allPosts = Collections2.filter(allPosts, Post.FUTURE_POSTS_FILTER);
 
-               List<Post> sortedPosts = new ArrayList<Post>(allPosts);
+               List<Post> sortedPosts = new ArrayList<>(allPosts);
                Collections.sort(sortedPosts, Post.NEWEST_FIRST);
 
                if (sortedPosts.size() < startPost) {