INT-3792: Fix Some SONAR Vulnerabilities
JIRA: https://jira.spring.io/browse/INT-3792 * Remove `Serializable` requirement for `ThreadStatePropagationChannelInterceptor` generic type * Increase `PriorityChannelTests` timeout
This commit is contained in:
committed by
Gary Russell
parent
7f504efa1b
commit
0f689558ab
@@ -844,8 +844,8 @@ public class IntegrationMBeanExporter extends MBeanExporter implements Applicati
|
||||
}
|
||||
StringBuilder builder = new StringBuilder();
|
||||
|
||||
for (Object key : objectNameStaticProperties.keySet()) {
|
||||
builder.append("," + key + "=" + objectNameStaticProperties.get(key));
|
||||
for (Entry<Object, Object> entry : this.objectNameStaticProperties.entrySet()) {
|
||||
builder.append("," + entry.getKey() + "=" + entry.getValue());
|
||||
}
|
||||
return builder.toString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user