Skip to content

Instantly share code, notes, and snippets.

@boostit
boostit / gist:5a884a68e222ebbe8731296e33fcdf94
Last active December 11, 2017 15:41
Can you spot the errors in the code? Tell us in the comments below.
class BoostIT implements Angajeaza {
public static String XP_LEVEL = "Senior";
public Set<Senior> seniors = new HashSet<Senior>;
public Set Cautam(List<Developer> devs) {
for (Developer d : devs) {
if (d.stieJava().equals(XP_LEVEL)) {
seniors.add(d);
}