aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@searchbox.com>2014-06-10 16:23:52 +0200
committerStephane Gamard <stephane.gamard@searchbox.com>2014-06-10 16:23:52 +0200
commit00d61ab374edba7017c3d3a9e4c40a771441c400 (patch)
tree81e7f311e0cb56d0f2609a20bd0319e03e3ef6b4
parent335134f88041a3f2920d4b8139a12c09c11a6966 (diff)
downloadsonarqube-00d61ab374edba7017c3d3a9e4c40a771441c400.tar.gz
sonarqube-00d61ab374edba7017c3d3a9e4c40a771441c400.zip
fix quality flaw (missing license header)
-rw-r--r--sonar-server/src/main/java/org/sonar/server/log/index/LogResult.java19
-rw-r--r--sonar-server/src/test/java/org/sonar/server/qualityprofile/ActiveRuleChangeMediumTest.java19
2 files changed, 38 insertions, 0 deletions
diff --git a/sonar-server/src/main/java/org/sonar/server/log/index/LogResult.java b/sonar-server/src/main/java/org/sonar/server/log/index/LogResult.java
index 80ce426d6ce..82229a07745 100644
--- a/sonar-server/src/main/java/org/sonar/server/log/index/LogResult.java
+++ b/sonar-server/src/main/java/org/sonar/server/log/index/LogResult.java
@@ -1,3 +1,22 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
package org.sonar.server.log.index;
import org.elasticsearch.action.search.SearchResponse;
diff --git a/sonar-server/src/test/java/org/sonar/server/qualityprofile/ActiveRuleChangeMediumTest.java b/sonar-server/src/test/java/org/sonar/server/qualityprofile/ActiveRuleChangeMediumTest.java
index c909800bec7..38813d810e9 100644
--- a/sonar-server/src/test/java/org/sonar/server/qualityprofile/ActiveRuleChangeMediumTest.java
+++ b/sonar-server/src/test/java/org/sonar/server/qualityprofile/ActiveRuleChangeMediumTest.java
@@ -1,3 +1,22 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
package org.sonar.server.qualityprofile;
import org.elasticsearch.common.collect.Iterables;