aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorEric Hartmann <hartmann.eric@gmail.com>2018-11-05 13:56:45 +0100
committerSonarTech <sonartech@sonarsource.com>2018-11-20 20:20:59 +0100
commitc760ac4c9d46fea3c56aa65d6c8c98b648a33f68 (patch)
treec420f5141ce88dd88a5d18b491c77c067aa65b3e /server
parentc9e3474940286b65bd94d14eeacef982407a65af (diff)
downloadsonarqube-c760ac4c9d46fea3c56aa65d6c8c98b648a33f68.tar.gz
sonarqube-c760ac4c9d46fea3c56aa65d6c8c98b648a33f68.zip
SONAR-11412 Generate Quality Gate events
on applications
Diffstat (limited to 'server')
-rw-r--r--server/sonar-ce-task-projectanalysis/src/test/java/org/sonar/ce/task/projectanalysis/component/ViewsComponent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-ce-task-projectanalysis/src/test/java/org/sonar/ce/task/projectanalysis/component/ViewsComponent.java b/server/sonar-ce-task-projectanalysis/src/test/java/org/sonar/ce/task/projectanalysis/component/ViewsComponent.java
index d53b1c12f2d..c4c48a6227a 100644
--- a/server/sonar-ce-task-projectanalysis/src/test/java/org/sonar/ce/task/projectanalysis/component/ViewsComponent.java
+++ b/server/sonar-ce-task-projectanalysis/src/test/java/org/sonar/ce/task/projectanalysis/component/ViewsComponent.java
@@ -46,8 +46,8 @@ public class ViewsComponent implements Component {
private final ViewAttributes viewAttributes;
private ViewsComponent(Type type, String key, @Nullable String uuid, @Nullable String name, @Nullable String description,
- List<Component> children,
- @Nullable ProjectViewAttributes projectViewAttributes, @Nullable SubViewAttributes subViewAttributes, @Nullable ViewAttributes viewAttributes) {
+ List<Component> children, @Nullable ProjectViewAttributes projectViewAttributes, @Nullable SubViewAttributes subViewAttributes,
+ @Nullable ViewAttributes viewAttributes) {
checkArgument(type.isViewsType(), "Component type must be a Views type");
this.type = type;
this.key = requireNonNull(key);