aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch/src/main
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-06 10:52:46 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-06 10:52:57 +0100
commit0fddc5fa4ea33882b60e072eee51f0e1ea585b4c (patch)
treeca06a067fbf862e691f47b0d342004f9dd97adea /sonar-batch/src/main
parenta729de69050ef86f5da1a1c3b54b4c7d4d318893 (diff)
downloadsonarqube-0fddc5fa4ea33882b60e072eee51f0e1ea585b4c.tar.gz
sonarqube-0fddc5fa4ea33882b60e072eee51f0e1ea585b4c.zip
Fix quality flaws5.4-M3
Diffstat (limited to 'sonar-batch/src/main')
-rw-r--r--sonar-batch/src/main/java/org/sonar/batch/report/AnalysisContextReportPublisher.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/report/AnalysisContextReportPublisher.java b/sonar-batch/src/main/java/org/sonar/batch/report/AnalysisContextReportPublisher.java
index eb7f05b3b06..9f5f77e6fa8 100644
--- a/sonar-batch/src/main/java/org/sonar/batch/report/AnalysisContextReportPublisher.java
+++ b/sonar-batch/src/main/java/org/sonar/batch/report/AnalysisContextReportPublisher.java
@@ -85,7 +85,7 @@ public class AnalysisContextReportPublisher {
private void writeSystemProps(BufferedWriter fileWriter) throws IOException {
fileWriter.write("System properties:\n");
Properties sysProps = system.properties();
- for (String prop : new TreeSet<String>(sysProps.stringPropertyNames())) {
+ for (String prop : new TreeSet<>(sysProps.stringPropertyNames())) {
if (prop.startsWith(SONAR_PROP_PREFIX)) {
continue;
}
@@ -96,7 +96,7 @@ public class AnalysisContextReportPublisher {
private void writeEnvVariables(BufferedWriter fileWriter) throws IOException {
fileWriter.append("Environment variables:\n");
Map<String, String> envVariables = system.envVariables();
- for (String env : new TreeSet<String>(envVariables.keySet())) {
+ for (String env : new TreeSet<>(envVariables.keySet())) {
fileWriter.append(String.format(" - %s=%s", env, envVariables.get(env))).append('\n');
}
}
@@ -109,7 +109,7 @@ public class AnalysisContextReportPublisher {
try (BufferedWriter fileWriter = Files.newBufferedWriter(analysisLog.toPath(), StandardCharsets.UTF_8, StandardOpenOption.WRITE, StandardOpenOption.APPEND)) {
fileWriter.append(String.format("Settings for module: %s", moduleDefinition.getKey())).append('\n');
Map<String, String> moduleSettings = settings.getProperties();
- for (String prop : new TreeSet<String>(moduleSettings.keySet())) {
+ for (String prop : new TreeSet<>(moduleSettings.keySet())) {
if (isSystemProp(prop) || isEnvVariable(prop) || !isSqProp(prop)) {
continue;
}