[ARTEMIS-2022] Ajust checkstyle

This commit is contained in:
Arthur Fritz Santiago 2018-08-10 12:09:32 -03:00 committed by Michael Andre Pearce
parent e15917129f
commit 349477ed31
1 changed files with 1 additions and 1 deletions

View File

@ -724,7 +724,7 @@ public class QueueControlImpl extends AbstractControl implements QueueControl {
while (iterator.hasNext()) {
MessageReference ref = iterator.next();
String messageProperty = ref.getMessage().getStringProperty(propertySearch);
messageProperty = messageProperty == null ? UNDEFINED : messageProperty ;
messageProperty = messageProperty == null ? UNDEFINED : messageProperty;
Integer value = result.getOrDefault(messageProperty, 0);
result.put(messageProperty, ++value);
}