Merge pull request #165 from bsinno/migrate_sonar_false_positives_into_code

Migrated sonar false positives from sonarqube server into code.
This commit is contained in:
Kai Zimmermann
2016-05-04 14:15:24 +02:00
29 changed files with 95 additions and 46 deletions

View File

@@ -26,6 +26,8 @@ import org.springframework.context.annotation.Import;
@EnableHawkbitManagedSecurityConfiguration
@EnableRestResources
@EnableDirectDeviceApi
// Exception squid:S1118 - Spring boot standard behavior
@SuppressWarnings({ "squid:S1118" })
public class Start {
/**
@@ -34,6 +36,8 @@ public class Start {
* @param args
* the VM arguments.
*/
// Exception squid:S2095 - Spring boot standard behavior
@SuppressWarnings({ "squid:S2095" })
public static void main(final String[] args) {
SpringApplication.run(Start.class, args);
}