Toggle navigation
Home
org.sonar.server.exceptions.Message to java.lang.String
No. of Instances - 14
No. of Commits - 1
No. of Projects - {'sonarqube'}
Hierarchy/Composition: Composition
Primitive Info: -
NameSpace: Internal -> Jdk
Mapping:
Add or Remove Method invocation
Message.of(Validation.IS_TOO_SHORT_MESSAGE,LOGIN_PARAM,LOGIN_MIN_LENGTH)
to
format(Validation.IS_TOO_SHORT_MESSAGE,LOGIN_PARAM,LOGIN_MIN_LENGTH)
Message.of(Validation.IS_TOO_LONG_MESSAGE,LOGIN_PARAM,LOGIN_MAX_LENGTH)
to
format(Validation.IS_TOO_LONG_MESSAGE,LOGIN_PARAM,LOGIN_MAX_LENGTH)
Message.of("The scm account '%s' is already used by user(s) : '%s'",scmAccount,Joiner.on(", ").join(matchingUsersWithoutExistingUser))
to
format("The scm account '%s' is already used by user(s) : '%s'",scmAccount,Joiner.on(", ").join(matchingUsersWithoutExistingUser))
Message.of(Validation.CANT_BE_EMPTY_MESSAGE,param)
to
format(Validation.CANT_BE_EMPTY_MESSAGE,param)
Message.of(Validation.IS_TOO_LONG_MESSAGE,NAME_PARAM,200)
to
format(Validation.IS_TOO_LONG_MESSAGE,NAME_PARAM,200)
Message.of(Validation.IS_TOO_LONG_MESSAGE,EMAIL_PARAM,100)
to
format(Validation.IS_TOO_LONG_MESSAGE,EMAIL_PARAM,100)
Message.of(Validation.CANT_BE_EMPTY_MESSAGE,PASSWORD_PARAM)
to
format(Validation.CANT_BE_EMPTY_MESSAGE,PASSWORD_PARAM)
Wrap or Un-wrap
add
to
add
add
to
add
add
to
add