Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJhoset Ceron
16,280 PointsI've added a new class called Blog. It is initialized with a list of BlogPost objects. Create a method in the Blog class
I don't know what am I doing wrong, can someone help?
Jhoset Ceron
16,280 Pointspackage com.example;
import java.util.List;
import java.util.Set;
public class Blog {
List<BlogPost> mPosts;
public Blog(List<BlogPost> posts) {
mPosts = posts;
}
public List<BlogPost> getPosts() {
return mPosts;
}
public Set<String> getAllAuthors() {
Set <String> set = new TreeSet();
for (BlogPost authorName : mPosts) {
set.add(authorName.getAuthor());
}
return set;
}
}
1 Answer
Kevin Faust
15,353 Pointsimport java.util.TreeSet;
You forgot to import TreeSet
Jhoset Ceron
16,280 PointsThank you, Kevin. It Worked :)
Kevin Faust
15,353 Pointsyour welcome
Kevin Faust
15,353 PointsKevin Faust
15,353 Pointspaste your code here