- compareTo()/Comparable<T> was used back in the TDGP times and is no longer needed
- value first, then variable on comparison to avoid accidently assignments
- updated jar(s)
@Override
public boolean isProfileLinkVisibleByUser (final User user) {
// Check on user
- if (user == null) {
+ if (null == user) {
/*
* Not set, means wrong invocation of this method as the user
* instance needs to be set first.