You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I lösningen till uppgift 3.1, visa ändringen i Server.java
/// Get all new posts from friends is a special case of get new posts
public synchronized List getNewFriendPosts(Account account) {
for (Post p : this.getNewPosts(account)) {
if (account.isFriendsWith(p.getPoster())) result.add(p);
}
return result;
}
result skapas aldrig
The text was updated successfully, but these errors were encountered:
I lösningen till uppgift 3.1, visa ändringen i Server.java
/// Get all new posts from friends is a special case of get new posts
public synchronized List getNewFriendPosts(Account account) {
for (Post p : this.getNewPosts(account)) {
if (account.isFriendsWith(p.getPoster())) result.add(p);
}
}
result skapas aldrig
The text was updated successfully, but these errors were encountered: