Suppress Sonar False Positives

Intentional null return from Boolean method.
This commit is contained in:
Gary Russell
2015-07-11 09:10:22 -04:00
parent 9600006694
commit 00ef4ce731
2 changed files with 2 additions and 2 deletions

View File

@@ -281,7 +281,7 @@ public class IntegrationManagementConfigurer implements SmartInitializingSinglet
}
}
}
return null;
return null;//NOSONAR - intentional null return
}
public MessageChannelMetrics getChannelMetrics(String name) {

View File

@@ -793,7 +793,7 @@ public class IntegrationMBeanExporter extends MBeanExporter implements Applicati
}
}
}
return null;
return null;//NOSONAR - intentional null return
}
private Object extractTarget(Object bean) {