PickwickSoft / innovedu

Boxed Boolean values should not be used in conditional expressions JAVA-E1054
Bug risk
Major
2 years ago2 years old
This would throw a NullPointerException if activated were null
221        if (details.get("picture") != null) {
222            user.setImageUrl((String) details.get("picture"));
223        }
224        user.setActivated(activated);225        return user;
226    }
227