Toggle navigation
Home
org.sonar.server.issue.ws.AvatarFactory to org.sonar.server.issue.ws.AvatarResolver
No. of Instances - 4
No. of Commits - 1
No. of Projects - {'sonarqube'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
builder.setAvatar(avatarFactory.create(email))
to
builder.setAvatar(avatarFactory.create(user))
setNullable(emptyToNull(user.getEmail()),email -> changelogBuilder.setAvatar(avatarFactory.create(email)))
to
setNullable(emptyToNull(user.getEmail()),email -> changelogBuilder.setAvatar(avatarFactory.create(user)))