sqt/assignment-w13/comments-api/src/main/java/comments/resources/ComparatorDateCommentRevers...

16 lines
336 B
Java

package comments.resources;
import comments.model.Comment;
import java.util.Comparator;
public class ComparatorDateCommentReversed implements Comparator<Comment> {
@Override
public int compare(Comment c1, Comment c2) {
// TODO Auto-generated method stub
return c2.getDate().compareTo(c1.getDate());
}
}