diff --git a/LICENSE.txt b/LICENSE.txt index 28723feb3d..50349b6b98 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -68,7 +68,7 @@ including Contributors. "SonarQube" means an open-source or commercial edition of software offered by SonarSource that is branded "SonarQube". -"SonarSource" means SonarSource SA, a Swiss company registered in Switzerland +"SonarSource" means SonarSource Sàrl, a Swiss company registered in Switzerland under UID No. CHE-114.587.664. "Source Code" means the form of a Program preferred for making modifications, diff --git a/NOTICE.txt b/NOTICE.txt index 5cd19949d6..88d19e2fcd 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ Code Quality and Security for Java -Copyright (C) 2012-2025 SonarSource SA +Copyright (C) 2012-2025 SonarSource Sàrl mailto:info AT sonarsource DOT com This product includes software developed at diff --git a/check-list/src/main/java/org/sonar/java/CheckListGenerator.java b/check-list/src/main/java/org/sonar/java/CheckListGenerator.java index 8bc0b90c7b..b61899902b 100644 --- a/check-list/src/main/java/org/sonar/java/CheckListGenerator.java +++ b/check-list/src/main/java/org/sonar/java/CheckListGenerator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2024-2025 SonarSource SA + * Copyright (C) 2024-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/check-list/src/main/java/org/sonar/java/package-info.java b/check-list/src/main/java/org/sonar/java/package-info.java index 6bb5e4b66f..324f3b6299 100644 --- a/check-list/src/main/java/org/sonar/java/package-info.java +++ b/check-list/src/main/java/org/sonar/java/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2024-2025 SonarSource SA + * Copyright (C) 2024-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/check-list/src/test/java/org/sonar/java/CheckListGeneratorTest.java b/check-list/src/test/java/org/sonar/java/CheckListGeneratorTest.java index b7048199cc..5a7dfe180f 100644 --- a/check-list/src/test/java/org/sonar/java/CheckListGeneratorTest.java +++ b/check-list/src/test/java/org/sonar/java/CheckListGeneratorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2024-2025 SonarSource SA + * Copyright (C) 2024-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/docs/java-custom-rules-example/LICENSE.txt b/docs/java-custom-rules-example/LICENSE.txt index 24b11902dd..7662f5b447 100644 --- a/docs/java-custom-rules-example/LICENSE.txt +++ b/docs/java-custom-rules-example/LICENSE.txt @@ -1,6 +1,6 @@ MIT No Attribution -Copyright 2025, SonarSource SA +Copyright 2025, SonarSource Sàrl Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaFileCheckRegistrar.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaFileCheckRegistrar.java index ebf7cff7eb..064b51da38 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaFileCheckRegistrar.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaFileCheckRegistrar.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesDefinition.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesDefinition.java index 8f4adc9329..9a90d3799d 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesDefinition.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesPlugin.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesPlugin.java index 9362401851..7fa05ac724 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesPlugin.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/MyJavaRulesPlugin.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/RulesList.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/RulesList.java index 7b83dc3ade..e3eb6f1e93 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/RulesList.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/RulesList.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidAnnotationRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidAnnotationRule.java index bbed83bce3..65c29e22f6 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidAnnotationRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidAnnotationRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRule.java index 6c08e7641a..00ff7b77d4 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRule.java index e836460aed..13ca7983c5 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidSuperClassRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidSuperClassRule.java index c328cee394..0b1b5f4410 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidSuperClassRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidSuperClassRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ /* diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidTreeListRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidTreeListRule.java index bc909e978e..971fad48c7 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidTreeListRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/AvoidTreeListRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/MyCustomSubscriptionRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/MyCustomSubscriptionRule.java index ffa528e299..5b318eddb3 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/MyCustomSubscriptionRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/MyCustomSubscriptionRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/NoIfStatementInTestsRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/NoIfStatementInTestsRule.java index 0a3df1bf17..2d97b65174 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/NoIfStatementInTestsRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/NoIfStatementInTestsRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRule.java index f8ce25adfc..eddf726175 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRule.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRule.java index 6e92b9a466..c3b3cca2bf 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRule.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/package-info.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/package-info.java index b45e392fd7..12f9e19180 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/package-info.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/checks/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/package-info.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/package-info.java index 8b985762dd..89ae89790e 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/package-info.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/PrinterVisitor.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/PrinterVisitor.java index f2c91bb419..b998cba89a 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/PrinterVisitor.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/PrinterVisitor.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.utils; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/StringUtils.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/StringUtils.java index d109296874..19e2753681 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/StringUtils.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/StringUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.utils; diff --git a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/package-info.java b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/package-info.java index 9f161998a1..c68cbf6100 100644 --- a/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/package-info.java +++ b/docs/java-custom-rules-example/src/main/java/org/sonar/samples/java/utils/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.utils; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaFileCheckRegistrarTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaFileCheckRegistrarTest.java index 4da497eea0..1c203b8536 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaFileCheckRegistrarTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaFileCheckRegistrarTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesDefinitionTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesDefinitionTest.java index 922d357cb8..579562983b 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesDefinitionTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesDefinitionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesPluginTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesPluginTest.java index 70c6ec0bc9..4abac1f411 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesPluginTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/MyJavaRulesPluginTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidAnnotationRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidAnnotationRuleTest.java index 1707f652ce..98874477d4 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidAnnotationRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidAnnotationRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRuleTest.java index ec0ec51ff0..95ce8ebeb8 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidBrandInMethodNamesRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRuleTest.java index 16d74be518..4c3b145c1d 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidMethodDeclarationRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidSuperClassRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidSuperClassRuleTest.java index 6de560996e..b1e56497c2 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidSuperClassRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidSuperClassRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidTreeListRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidTreeListRuleTest.java index 9c46bd359e..ab5de4a38b 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidTreeListRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/AvoidTreeListRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/MyCustomSubscriptionRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/MyCustomSubscriptionRuleTest.java index 90dded16ea..fabbe0b579 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/MyCustomSubscriptionRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/MyCustomSubscriptionRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/NoIfStatementInTestsRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/NoIfStatementInTestsRuleTest.java index baeb243698..7aea45cb94 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/NoIfStatementInTestsRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/NoIfStatementInTestsRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRuleTest.java index 4a957f670e..a8b7c152bf 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SecurityAnnotationMandatoryRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRuleTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRuleTest.java index f90488ddcf..bdbfb3dba7 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRuleTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/checks/SpringControllerRequestMappingEntityRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.checks; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/FilesUtils.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/FilesUtils.java index 8f86d7f19b..c5b722f678 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/FilesUtils.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/FilesUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.utils; diff --git a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/StringUtilsTest.java b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/StringUtilsTest.java index 2e9e08b181..3dbe512ea5 100644 --- a/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/StringUtilsTest.java +++ b/docs/java-custom-rules-example/src/test/java/org/sonar/samples/java/utils/StringUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2025 SonarSource SA - mailto:info AT sonarsource DOT com + * Copyright (C) 2012-2025 SonarSource Sàrl - mailto:info AT sonarsource DOT com * This code is released under [MIT No Attribution](https://opensource.org/licenses/MIT-0) license. */ package org.sonar.samples.java.utils; diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleSensor.java b/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleSensor.java index 301fda8c35..96f0e6fe53 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleSensor.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleSensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleXmlReportReader.java b/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleXmlReportReader.java index 0bc3dffa89..1b34489b76 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleXmlReportReader.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/CheckstyleXmlReportReader.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/ExternalIssueUtils.java b/external-reports/src/main/java/org/sonar/java/externalreport/ExternalIssueUtils.java index 3afabae9ec..cd695a9e41 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/ExternalIssueUtils.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/ExternalIssueUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/ExternalRulesDefinition.java b/external-reports/src/main/java/org/sonar/java/externalreport/ExternalRulesDefinition.java index 8a382c476d..d0fffbc21f 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/ExternalRulesDefinition.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/ExternalRulesDefinition.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/PmdSensor.java b/external-reports/src/main/java/org/sonar/java/externalreport/PmdSensor.java index 306bba3fab..7de2ff1316 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/PmdSensor.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/PmdSensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/PmdXmlReportReader.java b/external-reports/src/main/java/org/sonar/java/externalreport/PmdXmlReportReader.java index 873eb38876..342f31d8df 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/PmdXmlReportReader.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/PmdXmlReportReader.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsSensor.java b/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsSensor.java index 6fb9fba165..7e2813e84f 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsSensor.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsSensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsXmlReportReader.java b/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsXmlReportReader.java index a3606655c5..f6b129c6f4 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsXmlReportReader.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/SpotBugsXmlReportReader.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/main/java/org/sonar/java/externalreport/package-info.java b/external-reports/src/main/java/org/sonar/java/externalreport/package-info.java index 8b0bc32d5c..3a16b8ca0e 100644 --- a/external-reports/src/main/java/org/sonar/java/externalreport/package-info.java +++ b/external-reports/src/main/java/org/sonar/java/externalreport/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/test/java/org/sonar/java/externalreport/CheckstyleSensorTest.java b/external-reports/src/test/java/org/sonar/java/externalreport/CheckstyleSensorTest.java index 3e74805aa3..99d90be67a 100644 --- a/external-reports/src/test/java/org/sonar/java/externalreport/CheckstyleSensorTest.java +++ b/external-reports/src/test/java/org/sonar/java/externalreport/CheckstyleSensorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/test/java/org/sonar/java/externalreport/ExternalIssueAssert.java b/external-reports/src/test/java/org/sonar/java/externalreport/ExternalIssueAssert.java index 2436a20884..1f19c6c877 100644 --- a/external-reports/src/test/java/org/sonar/java/externalreport/ExternalIssueAssert.java +++ b/external-reports/src/test/java/org/sonar/java/externalreport/ExternalIssueAssert.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/test/java/org/sonar/java/externalreport/ExternalReportTestUtils.java b/external-reports/src/test/java/org/sonar/java/externalreport/ExternalReportTestUtils.java index 3c63c37508..4c1be179cc 100644 --- a/external-reports/src/test/java/org/sonar/java/externalreport/ExternalReportTestUtils.java +++ b/external-reports/src/test/java/org/sonar/java/externalreport/ExternalReportTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/test/java/org/sonar/java/externalreport/ExternalRulesDefinitionTest.java b/external-reports/src/test/java/org/sonar/java/externalreport/ExternalRulesDefinitionTest.java index 230f7e8261..14bc0e64a2 100644 --- a/external-reports/src/test/java/org/sonar/java/externalreport/ExternalRulesDefinitionTest.java +++ b/external-reports/src/test/java/org/sonar/java/externalreport/ExternalRulesDefinitionTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/test/java/org/sonar/java/externalreport/PmdSensorTest.java b/external-reports/src/test/java/org/sonar/java/externalreport/PmdSensorTest.java index ff4d3c185a..3e181c7441 100644 --- a/external-reports/src/test/java/org/sonar/java/externalreport/PmdSensorTest.java +++ b/external-reports/src/test/java/org/sonar/java/externalreport/PmdSensorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/external-reports/src/test/java/org/sonar/java/externalreport/SpotBugsSensorTest.java b/external-reports/src/test/java/org/sonar/java/externalreport/SpotBugsSensorTest.java index 8cda170260..268e1a49d1 100644 --- a/external-reports/src/test/java/org/sonar/java/externalreport/SpotBugsSensorTest.java +++ b/external-reports/src/test/java/org/sonar/java/externalreport/SpotBugsSensorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/autoscan/src/test/java/org/sonar/java/it/AutoScanTest.java b/its/autoscan/src/test/java/org/sonar/java/it/AutoScanTest.java index b24d90e56a..c72d5c98f3 100644 --- a/its/autoscan/src/test/java/org/sonar/java/it/AutoScanTest.java +++ b/its/autoscan/src/test/java/org/sonar/java/it/AutoScanTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/autoscan/src/test/java/org/sonar/java/it/ProfileGenerator.java b/its/autoscan/src/test/java/org/sonar/java/it/ProfileGenerator.java index bd1734d47a..10d01e88d6 100644 --- a/its/autoscan/src/test/java/org/sonar/java/it/ProfileGenerator.java +++ b/its/autoscan/src/test/java/org/sonar/java/it/ProfileGenerator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/ExampleCheck.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/ExampleCheck.java index 32042213cb..2dde595652 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/ExampleCheck.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/ExampleCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionPlugin.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionPlugin.java index 9a9baf66f9..645e6542f3 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionPlugin.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionPlugin.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionRulesDefinition.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionRulesDefinition.java index 4364f22493..a18ccc8c67 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionRulesDefinition.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionRulesDefinition.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionsCheckRegistrar.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionsCheckRegistrar.java index a20747b35c..622475252d 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionsCheckRegistrar.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JavaExtensionsCheckRegistrar.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JspCodeCheck.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JspCodeCheck.java index 9e52c13158..dc945b51cb 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JspCodeCheck.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/JspCodeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/StartableExtension.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/StartableExtension.java index 4fcee13ecc..46ce81c587 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/StartableExtension.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/StartableExtension.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleCheck.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleCheck.java index 36ea2506c8..cf6a86fdae 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleCheck.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleTestCheck.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleTestCheck.java index 0688177b1e..1708e15a29 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleTestCheck.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/SubscriptionExampleTestCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/package-info.java b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/package-info.java index c8a059078d..eb30743cab 100644 --- a/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/package-info.java +++ b/its/plugin/plugins/java-extension-plugin/src/main/java/org/sonar/samples/java/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/plugins/java-extension-plugin/src/test/java/org/sonar/samples/java/SubscriptionExampleCheckTest.java b/its/plugin/plugins/java-extension-plugin/src/test/java/org/sonar/samples/java/SubscriptionExampleCheckTest.java index a9502e80da..846c26b490 100644 --- a/its/plugin/plugins/java-extension-plugin/src/test/java/org/sonar/samples/java/SubscriptionExampleCheckTest.java +++ b/its/plugin/plugins/java-extension-plugin/src/test/java/org/sonar/samples/java/SubscriptionExampleCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/JspTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/JspTest.java index 97963e5c59..86c90cd65b 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/JspTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/JspTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/CacheEnabledTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/CacheEnabledTest.java index 12872366f1..10c03f8101 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/CacheEnabledTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/CacheEnabledTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/DuplicationTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/DuplicationTest.java index 933bdde436..9ff32a1b3b 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/DuplicationTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/DuplicationTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/ExternalReportTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/ExternalReportTest.java index 9acdf84cd0..f6a5cf879f 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/ExternalReportTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/ExternalReportTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaClasspathTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaClasspathTest.java index cde0fe7008..e7d0df0851 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaClasspathTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaClasspathTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java index 3964cea146..92352f17de 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaExtensionsTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaExtensionsTest.java index 9d509dea92..e68c32f1ce 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaExtensionsTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaExtensionsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTest.java index b71c5e1984..abdf8888a5 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTestSuite.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTestSuite.java index 90b835466c..007d786e08 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTestSuite.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTestSuite.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTutorialTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTutorialTest.java index de215447eb..5b77679964 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTutorialTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaTutorialTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/MultiModuleTelemetryTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/MultiModuleTelemetryTest.java index f08cebb759..7550deb98a 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/MultiModuleTelemetryTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/MultiModuleTelemetryTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/PackageInfoTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/PackageInfoTest.java index 8572e8edde..e6b4fa204d 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/PackageInfoTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/PackageInfoTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SonarLintTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SonarLintTest.java index c8b9d2cdc9..89eaea647a 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SonarLintTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SonarLintTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/Struts139Test.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/Struts139Test.java index 579289f6ca..fd2b3af79f 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/Struts139Test.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/Struts139Test.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SuppressWarningTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SuppressWarningTest.java index 76a922a38a..225af0d98b 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SuppressWarningTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/SuppressWarningTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/TestUtils.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/TestUtils.java index 64060b2e5c..c2339a4a02 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/TestUtils.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/TestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/UnitTestsTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/UnitTestsTest.java index 41905ac32c..e95afeb8b0 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/UnitTestsTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/UnitTestsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/ruling/src/test/java/org/sonar/java/it/JavaRulingTest.java b/its/ruling/src/test/java/org/sonar/java/it/JavaRulingTest.java index 55b8c7435c..0cf45d89de 100644 --- a/its/ruling/src/test/java/org/sonar/java/it/JavaRulingTest.java +++ b/its/ruling/src/test/java/org/sonar/java/it/JavaRulingTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/ruling/src/test/java/org/sonar/java/it/PerformanceStatistics.java b/its/ruling/src/test/java/org/sonar/java/it/PerformanceStatistics.java index 12ce4d5c5c..09edaa990e 100644 --- a/its/ruling/src/test/java/org/sonar/java/it/PerformanceStatistics.java +++ b/its/ruling/src/test/java/org/sonar/java/it/PerformanceStatistics.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/its/ruling/src/test/java/org/sonar/java/it/ProfileGenerator.java b/its/ruling/src/test/java/org/sonar/java/it/ProfileGenerator.java index 19f98b29bf..317b221160 100644 --- a/its/ruling/src/test/java/org/sonar/java/it/ProfileGenerator.java +++ b/its/ruling/src/test/java/org/sonar/java/it/ProfileGenerator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2013-2025 SonarSource SA + * Copyright (C) 2013-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AbstractAwsMethodVisitor.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AbstractAwsMethodVisitor.java index 93f3d12171..c02cfb57f2 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AbstractAwsMethodVisitor.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AbstractAwsMethodVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsBuilderMethodFinder.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsBuilderMethodFinder.java index 88430db05f..ddd5a292b3 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsBuilderMethodFinder.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsBuilderMethodFinder.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheck.java index 15e37e1f89..28b18fb50f 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheck.java index 09bc230793..14a532e2f0 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheck.java index 45c498146f..8087a10015 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheck.java index 3c43e119e3..7eefd58ff5 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionSetterCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionSetterCheck.java index b9f1a9c18a..e3561f4d1a 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionSetterCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionSetterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheck.java index 5a0c64144b..f9059a12a9 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheck.java index 07c6f59756..1268c471b1 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/package-info.java b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/package-info.java index 4088f9f212..be61a3cbcf 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/aws/package-info.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/aws/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheck.java b/java-checks-aws/src/main/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheck.java index 1fdeeaf9b7..452c1a2abe 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheck.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/main/java/org/sonar/java/checks/security/package-info.java b/java-checks-aws/src/main/java/org/sonar/java/checks/security/package-info.java index ac000fdeed..d0eef22c50 100644 --- a/java-checks-aws/src/main/java/org/sonar/java/checks/security/package-info.java +++ b/java-checks-aws/src/main/java/org/sonar/java/checks/security/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheckTest.java index 8b02c7beed..caca11b704 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsConsumerBuilderUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheckTest.java index d82a44ebeb..d5ab04dbc3 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsCredentialsShouldBeSetExplicitlyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheckTest.java index 41b4b81e8b..dbd2325f63 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLambdaSyncCallCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheckTest.java index 2db67ba2df..3aaa4620b9 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsLongTermAccessKeysCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionSetterCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionSetterCheckTest.java index dba707dc05..0024c18f0d 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionSetterCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionSetterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheckTest.java index 446b2f9e2c..d0e4b27caa 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsRegionShouldBeSetExplicitlyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheckTest.java index 0d4fe2a49e..1613330c84 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/aws/AwsReusableResourcesInitializedOnceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-aws/src/test/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheckTest.java b/java-checks-aws/src/test/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheckTest.java index 1262d45462..c02662e2d0 100644 --- a/java-checks-aws/src/test/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheckTest.java +++ b/java-checks-aws/src/test/java/org/sonar/java/checks/security/HardCodedCredentialsShouldNotBeUsedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethod.java b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethod.java index 97f69a5183..246846596e 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethod.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethod.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethodsLoader.java b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethodsLoader.java index 57db46de82..c2eeb2f0c5 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethodsLoader.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/CredentialMethodsLoader.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ExpressionsHelper.java b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ExpressionsHelper.java index f93647c64b..1d58939387 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ExpressionsHelper.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ExpressionsHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/HardcodedStringExpressionChecker.java b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/HardcodedStringExpressionChecker.java index c8e538bbe6..575759ae81 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/HardcodedStringExpressionChecker.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/HardcodedStringExpressionChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ReassignmentFinder.java b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ReassignmentFinder.java index 937095b40d..77055de47c 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ReassignmentFinder.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/ReassignmentFinder.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/TreeHelper.java b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/TreeHelper.java index 2ac1f8165a..d4df7d914e 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/TreeHelper.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/TreeHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/package-info.java b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/package-info.java index ea4e4bc26e..9fc86269e6 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/helpers/package-info.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/helpers/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/methods/AbstractMethodDetection.java b/java-checks-common/src/main/java/org/sonar/java/checks/methods/AbstractMethodDetection.java index 206ff73998..d535f6b297 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/methods/AbstractMethodDetection.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/methods/AbstractMethodDetection.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/main/java/org/sonar/java/checks/methods/package-info.java b/java-checks-common/src/main/java/org/sonar/java/checks/methods/package-info.java index 07821d582b..6fb4a0752f 100644 --- a/java-checks-common/src/main/java/org/sonar/java/checks/methods/package-info.java +++ b/java-checks-common/src/main/java/org/sonar/java/checks/methods/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodTest.java b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodTest.java index 0c326eae55..2a1cd9b634 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodTest.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodsLoaderTest.java b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodsLoaderTest.java index 00f5c121bd..186c090aa9 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodsLoaderTest.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/CredentialMethodsLoaderTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java index eb19b0196d..8b49ee5d89 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/HardcodedStringExpressionCheckerTest.java b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/HardcodedStringExpressionCheckerTest.java index c3152a658e..b7c4643f42 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/HardcodedStringExpressionCheckerTest.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/HardcodedStringExpressionCheckerTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java index 3a6c986dc0..22a3289fa7 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java index cd11e35172..88a9709728 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/TreeHelperTest.java b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/TreeHelperTest.java index 25a6f56dd8..131134578a 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/helpers/TreeHelperTest.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/helpers/TreeHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-common/src/test/java/org/sonar/java/checks/methods/AbstractMethodDetectionTest.java b/java-checks-common/src/test/java/org/sonar/java/checks/methods/AbstractMethodDetectionTest.java index d140df7841..4268c0ec8e 100644 --- a/java-checks-common/src/test/java/org/sonar/java/checks/methods/AbstractMethodDetectionTest.java +++ b/java-checks-common/src/test/java/org/sonar/java/checks/methods/AbstractMethodDetectionTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/files/non-compiling/checks/ObjectFinalizeOverriddenCheckSample.java b/java-checks-test-sources/default/src/main/files/non-compiling/checks/ObjectFinalizeOverriddenCheckSample.java index 5f1adf5ff3..fb2d73a4ed 100644 --- a/java-checks-test-sources/default/src/main/files/non-compiling/checks/ObjectFinalizeOverriddenCheckSample.java +++ b/java-checks-test-sources/default/src/main/files/non-compiling/checks/ObjectFinalizeOverriddenCheckSample.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/AssertJChainSimplificationCheckTestJava11.java b/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/AssertJChainSimplificationCheckTestJava11.java index e1e74cfe5b..a654c743f4 100644 --- a/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/AssertJChainSimplificationCheckTestJava11.java +++ b/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/AssertJChainSimplificationCheckTestJava11.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/TooManyAssertionsCheckSample.java b/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/TooManyAssertionsCheckSample.java index 58b46e928e..185d0dc6fb 100644 --- a/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/TooManyAssertionsCheckSample.java +++ b/java-checks-test-sources/default/src/main/files/non-compiling/checks/tests/TooManyAssertionsCheckSample.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/app/PendingIntent.java b/java-checks-test-sources/default/src/main/java/android/app/PendingIntent.java index 711ee958cb..1ac009f7bd 100644 --- a/java-checks-test-sources/default/src/main/java/android/app/PendingIntent.java +++ b/java-checks-test-sources/default/src/main/java/android/app/PendingIntent.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/bluetooth/BluetoothGatt.java b/java-checks-test-sources/default/src/main/java/android/bluetooth/BluetoothGatt.java index 8c170990fb..44718e1a4d 100644 --- a/java-checks-test-sources/default/src/main/java/android/bluetooth/BluetoothGatt.java +++ b/java-checks-test-sources/default/src/main/java/android/bluetooth/BluetoothGatt.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/bluetooth/le/AdvertiseSettings.java b/java-checks-test-sources/default/src/main/java/android/bluetooth/le/AdvertiseSettings.java index d68df52da7..0a70486691 100644 --- a/java-checks-test-sources/default/src/main/java/android/bluetooth/le/AdvertiseSettings.java +++ b/java-checks-test-sources/default/src/main/java/android/bluetooth/le/AdvertiseSettings.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/content/Context.java b/java-checks-test-sources/default/src/main/java/android/content/Context.java index beb46027f7..a8f545c296 100644 --- a/java-checks-test-sources/default/src/main/java/android/content/Context.java +++ b/java-checks-test-sources/default/src/main/java/android/content/Context.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/hardware/Camera.java b/java-checks-test-sources/default/src/main/java/android/hardware/Camera.java index af7f0985d5..7c7e57820a 100644 --- a/java-checks-test-sources/default/src/main/java/android/hardware/Camera.java +++ b/java-checks-test-sources/default/src/main/java/android/hardware/Camera.java @@ -1,9 +1,9 @@ /* - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/hardware/Sensor.java b/java-checks-test-sources/default/src/main/java/android/hardware/Sensor.java index 653dedb9c4..f183137326 100644 --- a/java-checks-test-sources/default/src/main/java/android/hardware/Sensor.java +++ b/java-checks-test-sources/default/src/main/java/android/hardware/Sensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/hardware/SensorManager.java b/java-checks-test-sources/default/src/main/java/android/hardware/SensorManager.java index 419e0de032..e86e429888 100644 --- a/java-checks-test-sources/default/src/main/java/android/hardware/SensorManager.java +++ b/java-checks-test-sources/default/src/main/java/android/hardware/SensorManager.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraDevice.java b/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraDevice.java index f0132ae699..e87ce142c5 100644 --- a/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraDevice.java +++ b/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraDevice.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraManager.java b/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraManager.java index e10d1c61fd..820eb7de51 100644 --- a/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraManager.java +++ b/java-checks-test-sources/default/src/main/java/android/hardware/camera2/CameraManager.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/hardware/display/VirtualDisplay.java b/java-checks-test-sources/default/src/main/java/android/hardware/display/VirtualDisplay.java index 38230f3326..da9fb24150 100644 --- a/java-checks-test-sources/default/src/main/java/android/hardware/display/VirtualDisplay.java +++ b/java-checks-test-sources/default/src/main/java/android/hardware/display/VirtualDisplay.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/location/LocationManager.java b/java-checks-test-sources/default/src/main/java/android/location/LocationManager.java index bb814aebd7..56b11b4fc4 100644 --- a/java-checks-test-sources/default/src/main/java/android/location/LocationManager.java +++ b/java-checks-test-sources/default/src/main/java/android/location/LocationManager.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/media/MediaPlayer.java b/java-checks-test-sources/default/src/main/java/android/media/MediaPlayer.java index 90d3c829ad..2cc2cf383c 100644 --- a/java-checks-test-sources/default/src/main/java/android/media/MediaPlayer.java +++ b/java-checks-test-sources/default/src/main/java/android/media/MediaPlayer.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/media/MediaRecorder.java b/java-checks-test-sources/default/src/main/java/android/media/MediaRecorder.java index 3300f6cb34..8bfee7ffb8 100644 --- a/java-checks-test-sources/default/src/main/java/android/media/MediaRecorder.java +++ b/java-checks-test-sources/default/src/main/java/android/media/MediaRecorder.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/media/SoundPool.java b/java-checks-test-sources/default/src/main/java/android/media/SoundPool.java index c15acd645b..5565a7f6c8 100644 --- a/java-checks-test-sources/default/src/main/java/android/media/SoundPool.java +++ b/java-checks-test-sources/default/src/main/java/android/media/SoundPool.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/media/audiofx/Visualizer.java b/java-checks-test-sources/default/src/main/java/android/media/audiofx/Visualizer.java index a9bcfc8941..3e84343578 100644 --- a/java-checks-test-sources/default/src/main/java/android/media/audiofx/Visualizer.java +++ b/java-checks-test-sources/default/src/main/java/android/media/audiofx/Visualizer.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/media/projection/MediaProjection.java b/java-checks-test-sources/default/src/main/java/android/media/projection/MediaProjection.java index 60a74a0bf6..a6c06d27f2 100644 --- a/java-checks-test-sources/default/src/main/java/android/media/projection/MediaProjection.java +++ b/java-checks-test-sources/default/src/main/java/android/media/projection/MediaProjection.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/net/wifi/WifiManager.java b/java-checks-test-sources/default/src/main/java/android/net/wifi/WifiManager.java index 9d2c5bfd03..197af62d47 100644 --- a/java-checks-test-sources/default/src/main/java/android/net/wifi/WifiManager.java +++ b/java-checks-test-sources/default/src/main/java/android/net/wifi/WifiManager.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/os/Bundle.java b/java-checks-test-sources/default/src/main/java/android/os/Bundle.java index c3ecbea7a2..6990c415d2 100644 --- a/java-checks-test-sources/default/src/main/java/android/os/Bundle.java +++ b/java-checks-test-sources/default/src/main/java/android/os/Bundle.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/os/Environment.java b/java-checks-test-sources/default/src/main/java/android/os/Environment.java index 2fe2783f3b..7d1984bf7b 100644 --- a/java-checks-test-sources/default/src/main/java/android/os/Environment.java +++ b/java-checks-test-sources/default/src/main/java/android/os/Environment.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/os/Handler.java b/java-checks-test-sources/default/src/main/java/android/os/Handler.java index e21122e75b..f02d36172f 100644 --- a/java-checks-test-sources/default/src/main/java/android/os/Handler.java +++ b/java-checks-test-sources/default/src/main/java/android/os/Handler.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/os/Parcelable.java b/java-checks-test-sources/default/src/main/java/android/os/Parcelable.java index d52cfdc3f2..61b41449d6 100644 --- a/java-checks-test-sources/default/src/main/java/android/os/Parcelable.java +++ b/java-checks-test-sources/default/src/main/java/android/os/Parcelable.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/os/PowerManager.java b/java-checks-test-sources/default/src/main/java/android/os/PowerManager.java index b4d1a152c0..dd5528bc3c 100644 --- a/java-checks-test-sources/default/src/main/java/android/os/PowerManager.java +++ b/java-checks-test-sources/default/src/main/java/android/os/PowerManager.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/os/UserHandle.java b/java-checks-test-sources/default/src/main/java/android/os/UserHandle.java index a7bcc30475..b52fe3c8b0 100644 --- a/java-checks-test-sources/default/src/main/java/android/os/UserHandle.java +++ b/java-checks-test-sources/default/src/main/java/android/os/UserHandle.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/package-info.java b/java-checks-test-sources/default/src/main/java/android/package-info.java index f0abe10e65..cc3d38f54a 100644 --- a/java-checks-test-sources/default/src/main/java/android/package-info.java +++ b/java-checks-test-sources/default/src/main/java/android/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/android/view/Surface.java b/java-checks-test-sources/default/src/main/java/android/view/Surface.java index c0f6858330..3b6a69bb3d 100644 --- a/java-checks-test-sources/default/src/main/java/android/view/Surface.java +++ b/java-checks-test-sources/default/src/main/java/android/view/Surface.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/checks/ObjectFinalizeOverriddenCheckSample.java b/java-checks-test-sources/default/src/main/java/checks/ObjectFinalizeOverriddenCheckSample.java index af90432bfe..eadba36daa 100644 --- a/java-checks-test-sources/default/src/main/java/checks/ObjectFinalizeOverriddenCheckSample.java +++ b/java-checks-test-sources/default/src/main/java/checks/ObjectFinalizeOverriddenCheckSample.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsParentSample.java b/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsParentSample.java index 9b2bc8d5ac..e87c320310 100644 --- a/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsParentSample.java +++ b/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsParentSample.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsSample.java b/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsSample.java index 38bfccd80c..353788e1a6 100644 --- a/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsSample.java +++ b/java-checks-test-sources/default/src/main/java/checks/VirtualThreadUnsupportedMethodsSample.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/main/java/checks/regex/UnicodeAwareCharClassesCheckTest.java b/java-checks-test-sources/default/src/main/java/checks/regex/UnicodeAwareCharClassesCheckTest.java index ad038dc50d..d71400b5ae 100644 --- a/java-checks-test-sources/default/src/main/java/checks/regex/UnicodeAwareCharClassesCheckTest.java +++ b/java-checks-test-sources/default/src/main/java/checks/regex/UnicodeAwareCharClassesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/test/java/checks/tests/AssertJChainSimplificationCheckTest.java b/java-checks-test-sources/default/src/test/java/checks/tests/AssertJChainSimplificationCheckTest.java index 7dca2a2b80..6eace6d1fa 100644 --- a/java-checks-test-sources/default/src/test/java/checks/tests/AssertJChainSimplificationCheckTest.java +++ b/java-checks-test-sources/default/src/test/java/checks/tests/AssertJChainSimplificationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/test/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java b/java-checks-test-sources/default/src/test/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java index 34bcb0e039..1404029f4e 100644 --- a/java-checks-test-sources/default/src/test/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java +++ b/java-checks-test-sources/default/src/test/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/default/src/test/java/checks/tests/JUnit4AnnotationsCheckTest.java b/java-checks-test-sources/default/src/test/java/checks/tests/JUnit4AnnotationsCheckTest.java index a3cacae1ff..e323435e3c 100644 --- a/java-checks-test-sources/default/src/test/java/checks/tests/JUnit4AnnotationsCheckTest.java +++ b/java-checks-test-sources/default/src/test/java/checks/tests/JUnit4AnnotationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/TestClasspathUtils.java b/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/TestClasspathUtils.java index 6319142c3a..450fdd6d6e 100644 --- a/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/TestClasspathUtils.java +++ b/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/TestClasspathUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/package-info.java b/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/package-info.java index e5376d8cc6..92dd8e9ffe 100644 --- a/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/package-info.java +++ b/java-checks-test-sources/test-classpath-reader/src/main/java/org/sonar/java/test/classpath/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-test-sources/test-classpath-reader/src/test/java/org/sonar/java/test/classpath/TestClasspathUtilsTest.java b/java-checks-test-sources/test-classpath-reader/src/test/java/org/sonar/java/test/classpath/TestClasspathUtilsTest.java index 0c8b8f8472..9a98133e79 100644 --- a/java-checks-test-sources/test-classpath-reader/src/test/java/org/sonar/java/test/classpath/TestClasspathUtilsTest.java +++ b/java-checks-test-sources/test-classpath-reader/src/test/java/org/sonar/java/test/classpath/TestClasspathUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/CheckVerifier.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/CheckVerifier.java index 6a953758e3..6d37f033b8 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/CheckVerifier.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/CheckVerifier.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/FilesUtils.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/FilesUtils.java index 543b8d3e91..e287154226 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/FilesUtils.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/FilesUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestCheckRegistrarContext.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestCheckRegistrarContext.java index 8afd2bb0af..a9ae645cb4 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestCheckRegistrarContext.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestCheckRegistrarContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestProfileRegistrarContext.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestProfileRegistrarContext.java index c59b9e0c79..ab0ebb8e9e 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestProfileRegistrarContext.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestProfileRegistrarContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestUtils.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestUtils.java index 9004c99cf3..b49ff75023 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestUtils.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/TestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CacheEnabledSensorContext.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CacheEnabledSensorContext.java index 63335e156f..c2cf1e8194 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CacheEnabledSensorContext.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CacheEnabledSensorContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CheckVerifierUtils.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CheckVerifierUtils.java index 1f72306569..b9911813a8 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CheckVerifierUtils.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/CheckVerifierUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/Expectations.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/Expectations.java index 218e0fd1e7..95e09c019f 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/Expectations.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/Expectations.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCacheContext.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCacheContext.java index c1b1acadab..a5831ad5c4 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCacheContext.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCacheContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifier.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifier.java index d28cddefdd..c9c71628e9 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifier.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifier.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalConfiguration.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalConfiguration.java index 6d7d8b6bf2..523be53019 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalConfiguration.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalConfiguration.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalFileSystem.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalFileSystem.java index 2108457ef9..f97cf5ecec 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalFileSystem.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalFileSystem.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalInputFile.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalInputFile.java index 852aceb418..0912737573 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalInputFile.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalInputFile.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalMockedSonarAPI.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalMockedSonarAPI.java index 1efb3ffacc..e3ef4ea223 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalMockedSonarAPI.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalMockedSonarAPI.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalReadCache.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalReadCache.java index 71fe0a5ff6..ce13dd6d8d 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalReadCache.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalReadCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSensorContext.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSensorContext.java index 9108a78465..9039fb847a 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSensorContext.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSensorContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntime.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntime.java index 52cb605ac7..ee5d6c68a1 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntime.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntime.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextPointer.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextPointer.java index 97a2c73d67..997db972e6 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextPointer.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextPointer.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextRange.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextRange.java index d844778c21..a858159fc9 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextRange.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalTextRange.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalWriteCache.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalWriteCache.java index 19453f795b..0c434142cd 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalWriteCache.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/InternalWriteCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifier.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifier.java index e1f679f439..c1f3fba42d 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifier.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifier.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/package-info.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/package-info.java index cf56280662..62bf5e67e0 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/package-info.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/internal/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/package-info.java b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/package-info.java index 840581c081..e654116724 100644 --- a/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/package-info.java +++ b/java-checks-testkit/src/main/java/org/sonar/java/checks/verifier/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/CheckVerifierTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/CheckVerifierTest.java index 229ae7a51c..69993cce6f 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/CheckVerifierTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/CheckVerifierTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/FilesUtilsTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/FilesUtilsTest.java index 883a39f8d9..956c43a8dc 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/FilesUtilsTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/FilesUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestCheckRegistrarContextTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestCheckRegistrarContextTest.java index 4a5b50a01f..0250055399 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestCheckRegistrarContextTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestCheckRegistrarContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestProfileRegistrarContextTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestProfileRegistrarContextTest.java index f92cd4b8ab..2011090e30 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestProfileRegistrarContextTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestProfileRegistrarContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestUtilsTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestUtilsTest.java index a466f7a0a8..787a5c50ab 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestUtilsTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/TestUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/CheckVerifierTestUtils.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/CheckVerifierTestUtils.java index 906e072ff1..37e5b8b66b 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/CheckVerifierTestUtils.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/CheckVerifierTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/ExpectationsTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/ExpectationsTest.java index f4ee415ce0..4600e25947 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/ExpectationsTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/ExpectationsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCacheContextTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCacheContextTest.java index 61b0c460ba..a8821bf0c5 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCacheContextTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCacheContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifierTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifierTest.java index 53458e03a0..4e34177ed0 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifierTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalCheckVerifierTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalConfigurationTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalConfigurationTest.java index 1c5e5e1e80..faff76357c 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalConfigurationTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalConfigurationTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalFileSystemTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalFileSystemTest.java index 103630edf6..32b9a1d086 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalFileSystemTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalFileSystemTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalInputFileTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalInputFileTest.java index 812906590d..fe199d590c 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalInputFileTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalInputFileTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalReadCacheTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalReadCacheTest.java index e6da8761bf..2dac22619f 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalReadCacheTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalReadCacheTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSensorContextTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSensorContextTest.java index 9959b36dcc..ff00840039 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSensorContextTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSensorContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntimeTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntimeTest.java index 79ad53c33f..7ecc764611 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntimeTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalSonarRuntimeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextPointerTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextPointerTest.java index 4604cdeebc..75b0b525f2 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextPointerTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextPointerTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextRangeTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextRangeTest.java index 10fd3522c7..1b32ae5b16 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextRangeTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalTextRangeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalWriteCacheTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalWriteCacheTest.java index e2f62940ad..0295d5c386 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalWriteCacheTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/InternalWriteCacheTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifierTest.java b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifierTest.java index dc8d3f06b2..b85d14aa75 100644 --- a/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifierTest.java +++ b/java-checks-testkit/src/test/java/org/sonar/java/checks/verifier/internal/JavaCheckVerifierTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbsOnNegativeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AbsOnNegativeCheck.java index 52bb7ea53e..263e4fd835 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbsOnNegativeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbsOnNegativeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractAccessibilityChangeChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractAccessibilityChangeChecker.java index 0a0e152e52..919d5bb515 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractAccessibilityChangeChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractAccessibilityChangeChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractBadFieldNameChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractBadFieldNameChecker.java index 943e9d27c3..99599fde7c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractBadFieldNameChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractBadFieldNameChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractCallToDeprecatedCodeChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractCallToDeprecatedCodeChecker.java index 72506da557..06620ff574 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractCallToDeprecatedCodeChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractCallToDeprecatedCodeChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheck.java index c576743de2..440c5b7e9f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheck.java index 1d5409bb82..cdb0a3b7b2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractCreateTempFileChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractCreateTempFileChecker.java index bf6a953f7e..17aaff909b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractCreateTempFileChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractCreateTempFileChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractForLoopRule.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractForLoopRule.java index c0c742d5e9..c63178bab0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractForLoopRule.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractForLoopRule.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractHardCodedCredentialChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractHardCodedCredentialChecker.java index 2c3ec0c5fb..60d14d1842 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractHardCodedCredentialChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractHardCodedCredentialChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractHashAlgorithmChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractHashAlgorithmChecker.java index bb5d9178bf..dae72036ba 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractHashAlgorithmChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractHashAlgorithmChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractInSynchronizeChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractInSynchronizeChecker.java index 779f8a6558..72b5d139e9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractInSynchronizeChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractInSynchronizeChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractMissingDeprecatedChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractMissingDeprecatedChecker.java index 2cf0b71930..c0229c35cb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractMissingDeprecatedChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractMissingDeprecatedChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractPackageInfoChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractPackageInfoChecker.java index 80ed1f5aa1..43e22ea9dc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractPackageInfoChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractPackageInfoChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractPrintfChecker.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractPrintfChecker.java index 8c0d23b4b2..cdd3fafb48 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractPrintfChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractPrintfChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AbstractSerializableInnerClassRule.java b/java-checks/src/main/java/org/sonar/java/checks/AbstractSerializableInnerClassRule.java index 060feafc4c..91116124de 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AbstractSerializableInnerClassRule.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AbstractSerializableInnerClassRule.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeCheck.java index 5d6f4022bf..3fed3aacf4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheck.java index 7a9264a732..7dba503f14 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AllBranchesAreIdenticalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AllBranchesAreIdenticalCheck.java index 958791ef60..642a7a4d72 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AllBranchesAreIdenticalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AllBranchesAreIdenticalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AnnotationDefaultArgumentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AnnotationDefaultArgumentCheck.java index fe3e43c0cf..0674bb1f2e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AnnotationDefaultArgumentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AnnotationDefaultArgumentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheck.java index ef364b7313..631ca803cd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassesTooBigCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassesTooBigCheck.java index 63f1b5da9b..cf26d5aa1f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassesTooBigCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AnonymousClassesTooBigCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ArrayCopyLoopCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ArrayCopyLoopCheck.java index eea70abd06..4b297991a2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ArrayCopyLoopCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ArrayCopyLoopCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheck.java index 4db6f06c1c..4fa2e2ba22 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheck.java index 0541cfc0ee..ceacdd3b34 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ArrayForVarArgCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ArrayForVarArgCheck.java index 8cf7aa3f41..87d8c8e8c8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ArrayForVarArgCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ArrayForVarArgCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheck.java index ca159c57f2..a4e6f4419e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheck.java index 7f6a85fbed..1aebb1bc43 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AssertOnBooleanVariableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AssertOnBooleanVariableCheck.java index 35448175b9..478587b153 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AssertOnBooleanVariableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AssertOnBooleanVariableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AssertionsInProductionCodeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AssertionsInProductionCodeCheck.java index e369903329..47bc7469c1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AssertionsInProductionCodeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AssertionsInProductionCodeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheck.java index cf931e009d..249f0f475a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AssignmentInSubExpressionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AssignmentInSubExpressionCheck.java index a6e606da49..643d5cf0e1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AssignmentInSubExpressionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AssignmentInSubExpressionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AtLeastOneConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AtLeastOneConstructorCheck.java index 0810f02f3c..a1a8aea856 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AtLeastOneConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AtLeastOneConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheck.java b/java-checks/src/main/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheck.java index 23c569eea7..76195142a1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BasicAuthCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BasicAuthCheck.java index 2c80d64be5..9176b9d4ca 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BasicAuthCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BasicAuthCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BatchSQLStatementsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BatchSQLStatementsCheck.java index ea37b74401..e5ba85dd1a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BatchSQLStatementsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BatchSQLStatementsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheck.java index b21cca3b2b..6a374f6a08 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheck.java index 0a24085406..3e0cb0d705 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BluetoothLowPowerModeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BluetoothLowPowerModeCheck.java index 68b17f6ffd..2a2f88462d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BluetoothLowPowerModeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BluetoothLowPowerModeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BooleanInversionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BooleanInversionCheck.java index dad004df45..3677bc1f02 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BooleanInversionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BooleanInversionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BooleanLiteralCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BooleanLiteralCheck.java index a0d0514afe..b897d2b02f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BooleanLiteralCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BooleanLiteralCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BooleanMethodReturnCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BooleanMethodReturnCheck.java index 45aea46728..bb3ecc43bb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BooleanMethodReturnCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BooleanMethodReturnCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/BoxedBooleanExpressionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/BoxedBooleanExpressionsCheck.java index 0ba12cccdf..a3e80ff12d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/BoxedBooleanExpressionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/BoxedBooleanExpressionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CORSCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CORSCheck.java index 1ba0312e93..58eb0c5502 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CORSCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CORSCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CallOuterPrivateMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CallOuterPrivateMethodCheck.java index 69289da43e..50012117a5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CallOuterPrivateMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CallOuterPrivateMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheck.java index a0dbb94cfa..56b15066a9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheck.java index 11ffd116a8..8903f3732c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedMethodCheck.java index 576334d673..29f3fd20f4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CallToDeprecatedMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheck.java index dd6688b0ee..1234288e93 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CaseInsensitiveComparisonCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CaseInsensitiveComparisonCheck.java index 78c642045f..ec2b2b9031 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CaseInsensitiveComparisonCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CaseInsensitiveComparisonCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CastArithmeticOperandCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CastArithmeticOperandCheck.java index 80121408a5..a36c1713af 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CastArithmeticOperandCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CastArithmeticOperandCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CatchExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CatchExceptionCheck.java index 4c694b3380..b571359bd5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CatchExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CatchExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheck.java index 4864c95d8d..09f784d4a4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CatchNPECheck.java b/java-checks/src/main/java/org/sonar/java/checks/CatchNPECheck.java index 8844ca757b..f7880b36fd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CatchNPECheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CatchNPECheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheck.java index 2aafa61acf..c916727176 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CatchRethrowingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CatchRethrowingCheck.java index 0ee51877cb..7834ddf651 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CatchRethrowingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CatchRethrowingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheck.java index b8338c4d69..8867bccf26 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ChangeMethodContractCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ChangeMethodContractCheck.java index bdded08a5d..ff51109009 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ChangeMethodContractCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ChangeMethodContractCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ChildClassShadowFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ChildClassShadowFieldCheck.java index 82c4c8ab7a..de6e3d4870 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ChildClassShadowFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ChildClassShadowFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ClassBuilderWithMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ClassBuilderWithMethodCheck.java index ed92cd7860..f4a9d20267 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ClassBuilderWithMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ClassBuilderWithMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ClassComparedByNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ClassComparedByNameCheck.java index 76e5a61082..1ea168564b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ClassComparedByNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ClassComparedByNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ClassFieldCountCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ClassFieldCountCheck.java index 6e518a92e5..d59b6ccb27 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ClassFieldCountCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ClassFieldCountCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ClassNameInClassTransformCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ClassNameInClassTransformCheck.java index 8039443e49..ab7a74a27a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ClassNameInClassTransformCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ClassNameInClassTransformCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ClassVariableVisibilityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ClassVariableVisibilityCheck.java index 2ca2df668f..35293daacb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ClassVariableVisibilityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ClassVariableVisibilityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheck.java index 09c5ef66b7..08d855e38b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheck.java index cde62659ce..46d3683817 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheck.java index 40fa720e98..d33aacab57 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CloneOverrideCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CloneOverrideCheck.java index 647fd85ac3..a7e0aca164 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CloneOverrideCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CloneOverrideCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CloneableImplementingCloneCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CloneableImplementingCloneCheck.java index a7bb8485e4..83d8256b6a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CloneableImplementingCloneCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CloneableImplementingCloneCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CognitiveComplexityMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CognitiveComplexityMethodCheck.java index 6144f19aed..54ce19b96c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CognitiveComplexityMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CognitiveComplexityMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollapsibleIfCandidateCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollapsibleIfCandidateCheck.java index 2436244f06..cae9434054 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollapsibleIfCandidateCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollapsibleIfCandidateCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectInsteadOfForeachCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectInsteadOfForeachCheck.java index 7480d2b0d7..e16941527a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectInsteadOfForeachCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectInsteadOfForeachCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionCallingItselfCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionCallingItselfCheck.java index c216c9f939..33f257088f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionCallingItselfCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionCallingItselfCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionConstructorReferenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionConstructorReferenceCheck.java index 38e11f1a1c..275051aa18 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionConstructorReferenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionConstructorReferenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionImplementationReferencedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionImplementationReferencedCheck.java index e61c5fad39..fe12fdbf93 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionImplementationReferencedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionImplementationReferencedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionInappropriateCallsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionInappropriateCallsCheck.java index 82dafaf221..1040c50b37 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionInappropriateCallsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionInappropriateCallsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionIsEmptyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionIsEmptyCheck.java index 416fc2323c..8a94ae4d3c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionIsEmptyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionIsEmptyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheck.java index b0c09a1cb5..b70a344861 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheck.java index d1ee2a5957..a63011d0ad 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectionsEmptyConstantsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectionsEmptyConstantsCheck.java index 31bd8fcd0f..f64f4396c8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectionsEmptyConstantsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectionsEmptyConstantsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CollectorsToListCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CollectorsToListCheck.java index 520e943fb0..51cecc38c3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CollectorsToListCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CollectorsToListCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CombineCatchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CombineCatchCheck.java index fe9907142c..4cd789e5c3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CombineCatchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CombineCatchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CommentContainsPatternChecker.java b/java-checks/src/main/java/org/sonar/java/checks/CommentContainsPatternChecker.java index 9727865158..7938742394 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CommentContainsPatternChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CommentContainsPatternChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CommentRegularExpressionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CommentRegularExpressionCheck.java index 646a5a6c98..7a2bd160ac 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CommentRegularExpressionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CommentRegularExpressionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CommentedOutCodeLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CommentedOutCodeLineCheck.java index 8ed76c603c..f66ccf291c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CommentedOutCodeLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CommentedOutCodeLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheck.java index 4db9a76af9..b778aeb949 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CompareObjectWithEqualsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CompareObjectWithEqualsCheck.java index 17f97bba88..fd89579df9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CompareObjectWithEqualsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CompareObjectWithEqualsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheck.java index 0051c2d017..278351ed8c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CompareToNotOverloadedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CompareToNotOverloadedCheck.java index f0e156a74c..30e9ef7509 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CompareToNotOverloadedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CompareToNotOverloadedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CompareToResultTestCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CompareToResultTestCheck.java index 44ff41c581..79da286662 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CompareToResultTestCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CompareToResultTestCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CompareToReturnValueCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CompareToReturnValueCheck.java index d299413721..012f12bf90 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CompareToReturnValueCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CompareToReturnValueCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CompareWithEqualsVisitor.java b/java-checks/src/main/java/org/sonar/java/checks/CompareWithEqualsVisitor.java index ce5d046b23..9601a2e688 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CompareWithEqualsVisitor.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CompareWithEqualsVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheck.java index 9c211ae3b8..05da7b46ca 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConditionalOnNewLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConditionalOnNewLineCheck.java index 9aa72421e0..eebc97dfb5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConditionalOnNewLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConditionalOnNewLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConfigurationBeanNamesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConfigurationBeanNamesCheck.java index 35895d3f72..ec7eca73f1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConfigurationBeanNamesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConfigurationBeanNamesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConfusingOverloadCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConfusingOverloadCheck.java index 38ae4b8765..4cda42a0ed 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConfusingOverloadCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConfusingOverloadCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConfusingVarargCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConfusingVarargCheck.java index 7ed8ff2cce..bfd16c806a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConfusingVarargCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConfusingVarargCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConstantMathCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConstantMathCheck.java index e99109dee7..31dc237a23 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConstantMathCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConstantMathCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConstantMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConstantMethodCheck.java index 312a3f40fa..53d6effe03 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConstantMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConstantMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheck.java index e23c5dffc1..783e693aa1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConstructorCallingOverridableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConstructorCallingOverridableCheck.java index 574bf2d235..3632c03240 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConstructorCallingOverridableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConstructorCallingOverridableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ConstructorInjectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ConstructorInjectionCheck.java index f010bed6e1..312855eaaa 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ConstructorInjectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ConstructorInjectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ControlCharacterInLiteralCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ControlCharacterInLiteralCheck.java index 3edb8fb693..f0f08a78c6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ControlCharacterInLiteralCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ControlCharacterInLiteralCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheck.java index 3cfac0a275..3713b02fbe 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheck.java b/java-checks/src/main/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheck.java index 80eb598a44..198d75633a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DanglingElseStatementsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DanglingElseStatementsCheck.java index 28852e5e3e..2217aafb35 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DanglingElseStatementsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DanglingElseStatementsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DateAndTimesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DateAndTimesCheck.java index 5693b44adb..853d324347 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DateAndTimesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DateAndTimesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DateFormatWeekYearCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DateFormatWeekYearCheck.java index bc1d057036..15480f233c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DateFormatWeekYearCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DateFormatWeekYearCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DateTimeFormatterMismatchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DateTimeFormatterMismatchCheck.java index 5d5c811309..91e8a19a24 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DateTimeFormatterMismatchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DateTimeFormatterMismatchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DateUtilsTruncateCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DateUtilsTruncateCheck.java index 139f11a1d4..5cecbe1dfc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DateUtilsTruncateCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DateUtilsTruncateCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DeadStoreCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DeadStoreCheck.java index 15f8262741..1756a70d3a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DeadStoreCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DeadStoreCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DefaultEncodingUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DefaultEncodingUsageCheck.java index e15991dbb1..21df7ca66d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DefaultEncodingUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DefaultEncodingUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheck.java index 90c11f4131..9d209534e0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DefaultInitializedFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DefaultInitializedFieldCheck.java index 37424c2222..c89920d762 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DefaultInitializedFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DefaultInitializedFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DefaultPackageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DefaultPackageCheck.java index d51866e91a..a8e129c5ab 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DefaultPackageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DefaultPackageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DeprecatedArgumentsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DeprecatedArgumentsCheck.java index d4978650a5..275c4c4f57 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DeprecatedArgumentsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DeprecatedArgumentsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DeprecatedTagPresenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DeprecatedTagPresenceCheck.java index ece7d0b58f..11d3655055 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DeprecatedTagPresenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DeprecatedTagPresenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DepthOfInheritanceTreeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DepthOfInheritanceTreeCheck.java index 62696165ea..2140b09a31 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DepthOfInheritanceTreeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DepthOfInheritanceTreeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DiamondOperatorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DiamondOperatorCheck.java index d14f46a136..954ec32586 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DiamondOperatorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DiamondOperatorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DisallowedClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DisallowedClassCheck.java index 7978837447..7697023cba 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DisallowedClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DisallowedClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DisallowedConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DisallowedConstructorCheck.java index 411330c94c..2220346911 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DisallowedConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DisallowedConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DisallowedMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DisallowedMethodCheck.java index cb06c5d1c5..eda1f042e4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DisallowedMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DisallowedMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DisallowedThreadGroupCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DisallowedThreadGroupCheck.java index 51f7d5b8de..f2cf1fbeca 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DisallowedThreadGroupCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DisallowedThreadGroupCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DoubleBraceInitializationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DoubleBraceInitializationCheck.java index 554ee1945f..b76f092964 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DoubleBraceInitializationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DoubleBraceInitializationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheck.java index a17193818f..c35ee1154d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DoublePrefixOperatorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DoublePrefixOperatorCheck.java index 6f6d2f2d30..11e75e8c35 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DoublePrefixOperatorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DoublePrefixOperatorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheck.java index 2e2ee560b2..ee7ac88fa6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/DynamicClassLoadCheck.java b/java-checks/src/main/java/org/sonar/java/checks/DynamicClassLoadCheck.java index a6a6f3ab28..624de5e474 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/DynamicClassLoadCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/DynamicClassLoadCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EmptyBlockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EmptyBlockCheck.java index e91e23a459..ecf3fa79c3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EmptyBlockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EmptyBlockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EmptyClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EmptyClassCheck.java index 1992c98d44..2f2149b49f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EmptyClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EmptyClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EmptyFileCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EmptyFileCheck.java index 44f9ab4d43..b99a55ad43 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EmptyFileCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EmptyFileCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EmptyMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EmptyMethodsCheck.java index 25aabbc26c..34a01a6161 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EmptyMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EmptyMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EmptyStatementUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EmptyStatementUsageCheck.java index 51ce0cad3e..b10c521268 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EmptyStatementUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EmptyStatementUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EnumEqualCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EnumEqualCheck.java index 6b2b2086a2..0397adbf57 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EnumEqualCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EnumEqualCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EnumMapCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EnumMapCheck.java index 410e307302..27c7e74c59 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EnumMapCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EnumMapCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EnumMutableFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EnumMutableFieldCheck.java index e3bb5f3467..7306fa5d40 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EnumMutableFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EnumMutableFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EnumSetCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EnumSetCheck.java index 7a39d3506b..8505587665 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EnumSetCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EnumSetCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EqualsArgumentTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EqualsArgumentTypeCheck.java index 491b6fb80b..f781411ed4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EqualsArgumentTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EqualsArgumentTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheck.java index ecf8fccef8..70057cbd4d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheck.java index 85139e2398..88680431ae 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EqualsOnAtomicClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EqualsOnAtomicClassCheck.java index 9fd03b51dd..22143d048e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EqualsOnAtomicClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EqualsOnAtomicClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheck.java index ef600c6f90..87cc98c226 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheck.java index f481297ba6..b0583f37b3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ErrorClassExtendedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ErrorClassExtendedCheck.java index 15553db2b5..921f8b7623 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ErrorClassExtendedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ErrorClassExtendedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/EscapedUnicodeCharactersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/EscapedUnicodeCharactersCheck.java index 3d406d2721..1cc2edd922 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/EscapedUnicodeCharactersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/EscapedUnicodeCharactersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheck.java index 1e29bcd2a7..be9420f0bf 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ExpressionComplexityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ExpressionComplexityCheck.java index 0c3d7294d4..ce1c376feb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ExpressionComplexityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ExpressionComplexityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/FieldModifierCheck.java b/java-checks/src/main/java/org/sonar/java/checks/FieldModifierCheck.java index 9a0109e61f..37ff6f3be7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/FieldModifierCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/FieldModifierCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/FileHeaderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/FileHeaderCheck.java index 7faede3a6f..f0a9752a61 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/FileHeaderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/FileHeaderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/FilesExistsJDK8Check.java b/java-checks/src/main/java/org/sonar/java/checks/FilesExistsJDK8Check.java index dd9c0d6e7f..87b1b07dc4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/FilesExistsJDK8Check.java +++ b/java-checks/src/main/java/org/sonar/java/checks/FilesExistsJDK8Check.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/FinalClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/FinalClassCheck.java index f93d2fafac..8735477b91 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/FinalClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/FinalClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/FinalizeFieldsSetCheck.java b/java-checks/src/main/java/org/sonar/java/checks/FinalizeFieldsSetCheck.java index 50c3ede018..67f90f03dc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/FinalizeFieldsSetCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/FinalizeFieldsSetCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/FixmeTagPresenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/FixmeTagPresenceCheck.java index 705518f825..f61151e6b0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/FixmeTagPresenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/FixmeTagPresenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/FloatEqualityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/FloatEqualityCheck.java index a78b1f9626..63f4341b0d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/FloatEqualityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/FloatEqualityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForLoopCounterChangedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForLoopCounterChangedCheck.java index 8fcb764e2e..5f5d76bf62 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForLoopCounterChangedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForLoopCounterChangedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForLoopFalseConditionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForLoopFalseConditionCheck.java index afb4789b3d..29522b4722 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForLoopFalseConditionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForLoopFalseConditionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheck.java index a5c9cf8799..3afaab0811 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementSignCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementSignCheck.java index 39825f5bcf..22ab21d709 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementSignCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForLoopIncrementSignCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForLoopTerminationConditionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForLoopTerminationConditionCheck.java index 04f2a6acb5..6706fdbca7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForLoopTerminationConditionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForLoopTerminationConditionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheck.java index e61df86588..5a641d5997 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForLoopVariableTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForLoopVariableTypeCheck.java index 418ccb8d7a..030fb960b6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForLoopVariableTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForLoopVariableTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheck.java index aab3f83d60..dddbdc3481 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/GarbageCollectorCalledCheck.java b/java-checks/src/main/java/org/sonar/java/checks/GarbageCollectorCalledCheck.java index ec66cd0072..862a544cee 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/GarbageCollectorCalledCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/GarbageCollectorCalledCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/GetClassLoaderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/GetClassLoaderCheck.java index 28403e63af..bc8756b8a2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/GetClassLoaderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/GetClassLoaderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/GetRequestedSessionIdCheck.java b/java-checks/src/main/java/org/sonar/java/checks/GetRequestedSessionIdCheck.java index f8f0d476d9..e24eb0fd01 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/GetRequestedSessionIdCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/GetRequestedSessionIdCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/GettersSettersOnRightFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/GettersSettersOnRightFieldCheck.java index cd9c1aedcb..d69de0c6d4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/GettersSettersOnRightFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/GettersSettersOnRightFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/HardCodedPasswordCheck.java b/java-checks/src/main/java/org/sonar/java/checks/HardCodedPasswordCheck.java index 8ad018d98a..5650971b87 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/HardCodedPasswordCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/HardCodedPasswordCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/HardCodedSecretCheck.java b/java-checks/src/main/java/org/sonar/java/checks/HardCodedSecretCheck.java index 44116d76b8..90d422ae8b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/HardCodedSecretCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/HardCodedSecretCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/HardcodedIpCheck.java b/java-checks/src/main/java/org/sonar/java/checks/HardcodedIpCheck.java index 2237e0b64e..c37ebb0908 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/HardcodedIpCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/HardcodedIpCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/HardcodedURICheck.java b/java-checks/src/main/java/org/sonar/java/checks/HardcodedURICheck.java index ae20018f32..3da805659f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/HardcodedURICheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/HardcodedURICheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/HasNextCallingNextCheck.java b/java-checks/src/main/java/org/sonar/java/checks/HasNextCallingNextCheck.java index 6d9501a451..46f0afaeb5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/HasNextCallingNextCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/HasNextCallingNextCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/HiddenFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/HiddenFieldCheck.java index 4582538499..df8cc1eb18 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/HiddenFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/HiddenFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IdenticalCasesInSwitchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IdenticalCasesInSwitchCheck.java index 9d43999254..564557010b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IdenticalCasesInSwitchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IdenticalCasesInSwitchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheck.java index 3d458e5e94..7af2da919d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheck.java index de0d31de70..84b8cb9592 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IgnoredOperationStatusCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IgnoredOperationStatusCheck.java index d2c180696c..c52691f2ac 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IgnoredOperationStatusCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IgnoredOperationStatusCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IgnoredReturnValueCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IgnoredReturnValueCheck.java index c68b97957e..4d1e8e0869 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IgnoredReturnValueCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IgnoredReturnValueCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IgnoredStreamReturnValueCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IgnoredStreamReturnValueCheck.java index 1aa6f5aaf2..774ff60480 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IgnoredStreamReturnValueCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IgnoredStreamReturnValueCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ImmediateReverseBoxingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ImmediateReverseBoxingCheck.java index 7ec748767d..336cbde102 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ImmediateReverseBoxingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ImmediateReverseBoxingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheck.java index 751bb07ab5..5f01303c2a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ImplementsEnumerationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ImplementsEnumerationCheck.java index 46314bd198..6464b803da 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ImplementsEnumerationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ImplementsEnumerationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InappropriateRegexpCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InappropriateRegexpCheck.java index 4745da9a80..9d4a67d5a7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InappropriateRegexpCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InappropriateRegexpCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IncorrectOrderOfMembersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IncorrectOrderOfMembersCheck.java index 4e73aec998..4d0646f5dd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IncorrectOrderOfMembersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IncorrectOrderOfMembersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheck.java index be90ff3a87..6fc4d52266 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IndentationAfterConditionalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IndentationAfterConditionalCheck.java index 5819553eea..b84e079f1d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IndentationAfterConditionalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IndentationAfterConditionalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IndentationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IndentationCheck.java index cf2bad5a34..8fd1e9f214 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IndentationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IndentationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheck.java index d4434d7f93..24818f5848 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfNonSerializableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfNonSerializableCheck.java index a3116691a8..c2932f6b2e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfNonSerializableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfNonSerializableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfSerializableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfSerializableCheck.java index c58ce1e363..64d17992bd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfSerializableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InnerClassOfSerializableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InnerClassTooManyLinesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InnerClassTooManyLinesCheck.java index df9b24309f..d52c184a19 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InnerClassTooManyLinesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InnerClassTooManyLinesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InnerStaticClassesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InnerStaticClassesCheck.java index 1fd88b493d..bf2634bf1f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InnerStaticClassesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InnerStaticClassesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InputStreamOverrideReadCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InputStreamOverrideReadCheck.java index aa430814eb..53824fcd28 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InputStreamOverrideReadCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InputStreamOverrideReadCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InputStreamReadCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InputStreamReadCheck.java index 1dd7f3e208..7ef1784a8b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InputStreamReadCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InputStreamReadCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InsecureCreateTempFileCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InsecureCreateTempFileCheck.java index 0be2c17cf7..532fbff4d0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InsecureCreateTempFileCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InsecureCreateTempFileCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InstanceOfPatternMatchingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InstanceOfPatternMatchingCheck.java index 35e643bfef..23039e0fe8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InstanceOfPatternMatchingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InstanceOfPatternMatchingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheck.java index dfd966ca57..d012a87a75 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InterfaceAsConstantContainerCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InterfaceAsConstantContainerCheck.java index 908aadab51..754ae0123e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InterfaceAsConstantContainerCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InterfaceAsConstantContainerCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheck.java index 2fcdb309cd..d8bd1844a3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InterruptedExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InterruptedExceptionCheck.java index 9107260e00..17c47edba1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InterruptedExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InterruptedExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/InvalidDateValuesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/InvalidDateValuesCheck.java index 63feadf007..2eb8ba9299 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/InvalidDateValuesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/InvalidDateValuesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IsInstanceMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IsInstanceMethodCheck.java index f41a1e386b..ce36b04d64 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IsInstanceMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IsInstanceMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IterableIteratorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IterableIteratorCheck.java index e9137b3cc5..06a0c87ad5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IterableIteratorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IterableIteratorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/IteratorNextExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/IteratorNextExceptionCheck.java index 1806c4b022..fd07b5417a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/IteratorNextExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/IteratorNextExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/JacksonDeserializationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/JacksonDeserializationCheck.java index f3c6f3eaed..9839f3f3c0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/JacksonDeserializationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/JacksonDeserializationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/JavaFootprint.java b/java-checks/src/main/java/org/sonar/java/checks/JavaFootprint.java index 80953935fa..39b5afc31d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/JavaFootprint.java +++ b/java-checks/src/main/java/org/sonar/java/checks/JavaFootprint.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheck.java index 306e293464..539d52a630 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/JpaEagerFetchTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/JpaEagerFetchTypeCheck.java index a44ce73ace..092f569b42 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/JpaEagerFetchTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/JpaEagerFetchTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheck.java b/java-checks/src/main/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheck.java index 9805fd8e63..7363df26b9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheck.java index 8ff7de1e65..2392a8103f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheck.java index fc20ca610a..035d8fb345 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LambdaOptionalParenthesisCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LambdaOptionalParenthesisCheck.java index 60a118da22..e0046e07f9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LambdaOptionalParenthesisCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LambdaOptionalParenthesisCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LambdaSingleExpressionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LambdaSingleExpressionCheck.java index 66e717626f..5f56d76ff3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LambdaSingleExpressionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LambdaSingleExpressionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LambdaTooBigCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LambdaTooBigCheck.java index 4e05141348..18cde2ef3e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LambdaTooBigCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LambdaTooBigCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LambdaTypeParameterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LambdaTypeParameterCheck.java index 25a8c018e8..6952c2a978 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LambdaTypeParameterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LambdaTypeParameterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LazyArgEvaluationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LazyArgEvaluationCheck.java index 457b268f30..71f1806d5a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LazyArgEvaluationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LazyArgEvaluationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LeastSpecificTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LeastSpecificTypeCheck.java index 6585deba28..554c01db1a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LeastSpecificTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LeastSpecificTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceBaseTreeVisitor.java b/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceBaseTreeVisitor.java index 4e68e3ca7b..262526da3c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceBaseTreeVisitor.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceBaseTreeVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheck.java index cb6c2ed61d..66bd46c40e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheck.java index 9294c5ad7c..c061b350df 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LoggedRethrownExceptionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LoggedRethrownExceptionsCheck.java index 8830f96053..3eb08570ab 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LoggedRethrownExceptionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LoggedRethrownExceptionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LoggerClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LoggerClassCheck.java index 69d056ad4a..c18cef6128 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LoggerClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LoggerClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LoggersDeclarationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LoggersDeclarationCheck.java index f9fc190892..aad35bb5dc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LoggersDeclarationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LoggersDeclarationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheck.java index 07372debe9..92ea88a385 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheck.java index 5f4ef4a793..d795d9ea67 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/LoopsOnSameSetCheck.java b/java-checks/src/main/java/org/sonar/java/checks/LoopsOnSameSetCheck.java index 00d88260b1..c4a6408000 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/LoopsOnSameSetCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/LoopsOnSameSetCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MagicNumberCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MagicNumberCheck.java index 7b3c66562e..b021c9be36 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MagicNumberCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MagicNumberCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MainMethodThrowsExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MainMethodThrowsExceptionCheck.java index edc26f2830..95d5c89be2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MainMethodThrowsExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MainMethodThrowsExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MapKeyNotComparableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MapKeyNotComparableCheck.java index 67cedcd4ae..22f3d15a24 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MapKeyNotComparableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MapKeyNotComparableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheck.java index c39c12962b..691290a3a7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MathClampMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MathClampMethodsCheck.java index fa017f1836..fe846a7d54 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MathClampMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MathClampMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MathClampRangeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MathClampRangeCheck.java index df535649af..3673d98ea8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MathClampRangeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MathClampRangeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MathOnFloatCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MathOnFloatCheck.java index a2c2b89cbe..0482b41237 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MathOnFloatCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MathOnFloatCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheck.java index cfca4361c8..db5a30b582 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MethodComplexityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MethodComplexityCheck.java index bbbe1e8e93..e20c4c1073 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MethodComplexityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MethodComplexityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MethodIdenticalImplementationsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MethodIdenticalImplementationsCheck.java index 908eb3ed04..87e4d73800 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MethodIdenticalImplementationsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MethodIdenticalImplementationsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MethodOnlyCallsSuperCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MethodOnlyCallsSuperCheck.java index 727095fc5f..f4a8865e19 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MethodOnlyCallsSuperCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MethodOnlyCallsSuperCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MethodParametersOrderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MethodParametersOrderCheck.java index 2614c919eb..89b818df92 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MethodParametersOrderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MethodParametersOrderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MethodTooBigCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MethodTooBigCheck.java index 6c099dc08d..113a5f4ef8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MethodTooBigCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MethodTooBigCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheck.java index 96daef12dc..02ab7455f4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MismatchPackageDirectoryCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MismatchPackageDirectoryCheck.java index 1bf803610e..eb5f91ecce 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MismatchPackageDirectoryCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MismatchPackageDirectoryCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MissingBeanValidationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MissingBeanValidationCheck.java index 87426be0f6..edac634842 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MissingBeanValidationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MissingBeanValidationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MissingCurlyBracesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MissingCurlyBracesCheck.java index b51ed35870..71d5cc8c3c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MissingCurlyBracesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MissingCurlyBracesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MissingDeprecatedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MissingDeprecatedCheck.java index d4d766368c..e4ecb7c6f0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MissingDeprecatedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MissingDeprecatedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheck.java index eff8dd337c..e47374ac5f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheck.java index bceb904439..34ad3f9f56 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MissingPackageInfoCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MissingPackageInfoCheck.java index fc5dc792b7..3fd689f939 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MissingPackageInfoCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MissingPackageInfoCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ModifiersOrderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ModifiersOrderCheck.java index cd57ecec54..2b9c694ac9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ModifiersOrderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ModifiersOrderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ModulusEqualityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ModulusEqualityCheck.java index 435fb90992..a0c517f4e4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ModulusEqualityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ModulusEqualityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheck.java index 7d29d6ffd3..91a1f4da6d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/MutableMembersUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/MutableMembersUsageCheck.java index a0f1d25450..4c23dda4e9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/MutableMembersUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/MutableMembersUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NPEThrowCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NPEThrowCheck.java index bef1f7e8e4..41ea95889e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NPEThrowCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NPEThrowCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NestedBlocksCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NestedBlocksCheck.java index 3185f5678e..06b78476c6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NestedBlocksCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NestedBlocksCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NestedEnumStaticCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NestedEnumStaticCheck.java index 69b034bd19..e4907b1ada 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NestedEnumStaticCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NestedEnumStaticCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NestedIfStatementsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NestedIfStatementsCheck.java index a8991abf91..92e17f882a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NestedIfStatementsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NestedIfStatementsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NestedSwitchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NestedSwitchCheck.java index c16c55def4..072b5ff846 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NestedSwitchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NestedSwitchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NestedTernaryOperatorsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NestedTernaryOperatorsCheck.java index 5d3e743d48..069e55fa94 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NestedTernaryOperatorsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NestedTernaryOperatorsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NestedTryCatchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NestedTryCatchCheck.java index 81863ab5f5..00a411e885 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NestedTryCatchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NestedTryCatchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NioFileDeleteCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NioFileDeleteCheck.java index 7a732c74c4..c0b2388853 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NioFileDeleteCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NioFileDeleteCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheck.java index 49d55015d2..3bc0859a7d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NoPmdTagPresenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NoPmdTagPresenceCheck.java index 764d528545..d2a8472881 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NoPmdTagPresenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NoPmdTagPresenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NoSonarCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NoSonarCheck.java index 73b6a9d274..c8d2d332fd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NoSonarCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NoSonarCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NonShortCircuitLogicCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NonShortCircuitLogicCheck.java index 8893c3403e..ab53a8f1ac 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NonShortCircuitLogicCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NonShortCircuitLogicCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NonStaticClassInitializerCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NonStaticClassInitializerCheck.java index 88320b8e16..6f95da6443 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NonStaticClassInitializerCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NonStaticClassInitializerCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NotifyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NotifyCheck.java index b2f39fed0f..9223c00364 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NotifyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NotifyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NullCheckWithInstanceofCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NullCheckWithInstanceofCheck.java index 171021e1bd..9c2933f963 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NullCheckWithInstanceofCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NullCheckWithInstanceofCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheck.java index 24f7b75e15..7a454604ea 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheck.java index 2a44f08df4..54bde51a69 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OSCommandsPathCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OSCommandsPathCheck.java index f0514bb9e7..7be092209d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OSCommandsPathCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OSCommandsPathCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheck.java index 73c5932e73..81efd0c912 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeCheck.java index b27fd7d149..5d90ea60e1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheck.java index 6943858d62..958e825e78 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheck.java index 3167ed54b8..fcff81d613 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheck.java index b2a9a14976..c45e8e5a3a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheck.java index 861bb445b6..f66eae4383 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OctalValuesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OctalValuesCheck.java index 3f3edd9ce6..1334c37dcb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OctalValuesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OctalValuesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OmitPermittedTypesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OmitPermittedTypesCheck.java index 438ef0b33b..34392c0f7b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OmitPermittedTypesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OmitPermittedTypesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OneClassInterfacePerFileCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OneClassInterfacePerFileCheck.java index 5a8bf91ece..44fad4e56f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OneClassInterfacePerFileCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OneClassInterfacePerFileCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OneDeclarationPerLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OneDeclarationPerLineCheck.java index 96ecadf2bf..cf672e5f08 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OneDeclarationPerLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OneDeclarationPerLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OperatorPrecedenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OperatorPrecedenceCheck.java index fd56595ea2..72a834a6b3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OperatorPrecedenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OperatorPrecedenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OptionalAsParameterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OptionalAsParameterCheck.java index ae4d761b38..9d5cc1e71c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OptionalAsParameterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OptionalAsParameterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OutputStreamOverrideWriteCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OutputStreamOverrideWriteCheck.java index 9ed62efa0f..72c9cdbd15 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OutputStreamOverrideWriteCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OutputStreamOverrideWriteCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OverrideAnnotationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OverrideAnnotationCheck.java index 32db5f50bf..e4773a9acf 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OverrideAnnotationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OverrideAnnotationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/OverwrittenKeyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/OverwrittenKeyCheck.java index 24f0cc7dc6..bed62b4163 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/OverwrittenKeyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/OverwrittenKeyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ParameterReassignedToCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ParameterReassignedToCheck.java index 13392b3878..26aab15783 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ParameterReassignedToCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ParameterReassignedToCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ParsingErrorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ParsingErrorCheck.java index 79b31e9672..5d899b6cff 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ParsingErrorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ParsingErrorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PatternMatchUsingIfCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PatternMatchUsingIfCheck.java index ed551c0b32..fd67df07c8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PatternMatchUsingIfCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PatternMatchUsingIfCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PatternUtils.java b/java-checks/src/main/java/org/sonar/java/checks/PatternUtils.java index 91715ea460..bed49a7c68 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PatternUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PatternUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PopulateBeansCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PopulateBeansCheck.java index ba2d3b930e..c1edb901e7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PopulateBeansCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PopulateBeansCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PredictableSeedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PredictableSeedCheck.java index cac3e63e66..46fe2c55df 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PredictableSeedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PredictableSeedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PreferStreamAnyMatchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PreferStreamAnyMatchCheck.java index 9b33473d07..807843548b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PreferStreamAnyMatchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PreferStreamAnyMatchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementAndResultSetCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementAndResultSetCheck.java index d367639844..e736fe988f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementAndResultSetCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementAndResultSetCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheck.java index f04a3e635e..19e4aed916 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheck.java index f5e9218709..4c9abff52d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheck.java index ed623628dd..c2a7f3fe7e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PrimitivesMarkedNullableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PrimitivesMarkedNullableCheck.java index 32ada7af2f..13acf02efc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PrimitivesMarkedNullableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PrimitivesMarkedNullableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PrintfFailCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PrintfFailCheck.java index 513a4dfde4..d12e76549f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PrintfFailCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PrintfFailCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PrintfMisuseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PrintfMisuseCheck.java index 8ea4640dab..f2504c1370 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PrintfMisuseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PrintfMisuseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheck.java index df01b53719..0b4542d5f6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheck.java index d525a020fd..3a1b077a68 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PseudoRandomCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PseudoRandomCheck.java index 3792458f85..49f7c929e1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PseudoRandomCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PseudoRandomCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheck.java index 4ccee5b5d1..8bcb917e80 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheck.java index 92a8f7a149..7897032fe8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/PublicStaticMutableMembersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/PublicStaticMutableMembersCheck.java index 370b236fea..baa3902c63 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/PublicStaticMutableMembersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/PublicStaticMutableMembersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheck.java index b61cf43953..51ec8ce329 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RandomFloatToIntCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RandomFloatToIntCheck.java index ddfa930419..2ff6ec468a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RandomFloatToIntCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RandomFloatToIntCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RawByteBitwiseOperationsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RawByteBitwiseOperationsCheck.java index 47b1a5d4b3..37c82e9390 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RawByteBitwiseOperationsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RawByteBitwiseOperationsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RawExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RawExceptionCheck.java index 85aa9be7d8..82fc441d0d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RawExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RawExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RawTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RawTypeCheck.java index 94045dea5f..d0daf3d03c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RawTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RawTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReadObjectSynchronizedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReadObjectSynchronizedCheck.java index 8082152ff5..881442086b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReadObjectSynchronizedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReadObjectSynchronizedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RecordDuplicatedGetterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RecordDuplicatedGetterCheck.java index b6c9519548..9a6195330a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RecordDuplicatedGetterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RecordDuplicatedGetterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RecordInsteadOfClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RecordInsteadOfClassCheck.java index 635ea6b472..349cea9c0f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RecordInsteadOfClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RecordInsteadOfClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheck.java index 5bcb02d108..cacb4ad7b7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantAbstractMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantAbstractMethodCheck.java index 5205b4abf6..022efdbea8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantAbstractMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantAbstractMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantCloseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantCloseCheck.java index df7d43abb6..cc8e3c2649 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantCloseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantCloseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantJumpCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantJumpCheck.java index 5c64273aec..30428518c2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantJumpCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantJumpCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantModifierCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantModifierCheck.java index 5b5fe57e8b..5b39c29c1f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantModifierCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantModifierCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheck.java index 6536ee9202..e48deb1489 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantRecordMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantRecordMethodsCheck.java index 86ddb27810..9028024eac 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantRecordMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantRecordMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantStreamCollectCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantStreamCollectCheck.java index fe3c5928c9..bd6c538e0b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantStreamCollectCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantStreamCollectCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantThrowsDeclarationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantThrowsDeclarationCheck.java index 25f5ba488f..c0ad40acd8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantThrowsDeclarationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantThrowsDeclarationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RedundantTypeCastCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RedundantTypeCastCheck.java index 83f1e8545d..98bf5c5565 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RedundantTypeCastCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RedundantTypeCastCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheck.java index 40fe98fd41..1b91be1635 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheck.java index f168bc3775..f9c2153e5e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReleaseSensorsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReleaseSensorsCheck.java index 8a281749ad..62a644100e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReleaseSensorsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReleaseSensorsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheck.java index c9a736bdf6..a2622927ed 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RepeatAnnotationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RepeatAnnotationCheck.java index 4567afe855..7d4e63252c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RepeatAnnotationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RepeatAnnotationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheck.java index 60ce291eda..17c8708deb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheck.java index 75b2a8d003..d7afadf621 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheck.java index d61d6d9e4a..6e60550571 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheck.java index 57baddfcf0..338652c9f9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ResultSetIsLastCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ResultSetIsLastCheck.java index c52bedda12..d8d7244b76 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ResultSetIsLastCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ResultSetIsLastCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheck.java index cac79c0a17..f15fd36d2d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReturnInFinallyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReturnInFinallyCheck.java index 7417269e4b..94397e3138 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReturnInFinallyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReturnInFinallyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheck.java index 8b921f425c..6474460336 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReuseRandomCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReuseRandomCheck.java index 93dc01f860..7d9d8e660a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReuseRandomCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReuseRandomCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReverseSequencedCollectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReverseSequencedCollectionCheck.java index fe59d98d8b..4c31d1726e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReverseSequencedCollectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReverseSequencedCollectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheck.java index 501715dbc2..45c4c9293a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheck.java index 42e17f3f9e..1ee1c48594 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheck.java index 219b1fa470..5702422edf 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceStartLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceStartLineCheck.java index 8341c67efe..e1a2401b09 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceStartLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceStartLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceToNextBlockAbstractVisitor.java b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceToNextBlockAbstractVisitor.java index 594b695cd6..8025534490 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceToNextBlockAbstractVisitor.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RightCurlyBraceToNextBlockAbstractVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/RunFinalizersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/RunFinalizersCheck.java index d00515b8ac..f8b3d79a07 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/RunFinalizersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/RunFinalizersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SQLInjectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SQLInjectionCheck.java index 3f5d876647..44320c26b0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SQLInjectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SQLInjectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheck.java index 5f6cad0d53..a493abc686 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SelectorMethodArgumentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SelectorMethodArgumentCheck.java index 5aab14961b..d25ae77ead 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SelectorMethodArgumentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SelectorMethodArgumentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SelfAssignmentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SelfAssignmentCheck.java index b9991dc9d0..96ad9d8307 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SelfAssignmentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SelfAssignmentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ServletInstanceFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ServletInstanceFieldCheck.java index ccf746736d..18b59cd5f7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ServletInstanceFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ServletInstanceFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheck.java index 13f29fa111..8d8a6a31f5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheck.java index e5224dbc28..b8bb786841 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ShiftOnIntOrLongCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ShiftOnIntOrLongCheck.java index 41eb1196bc..9626f62945 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ShiftOnIntOrLongCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ShiftOnIntOrLongCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SillyEqualsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SillyEqualsCheck.java index 9ddac957f0..69385ac315 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SillyEqualsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SillyEqualsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SillyStringOperationsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SillyStringOperationsCheck.java index a181905932..14e3d51910 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SillyStringOperationsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SillyStringOperationsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SimpleClassNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SimpleClassNameCheck.java index 06a6103d42..d5e82c74b9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SimpleClassNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SimpleClassNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheck.java index ed75e31e9b..090ed52ad2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheck.java index e84b98f357..1147099a14 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheck.java index a6879ec9e8..0f83bb0274 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StandardCharsetsConstantsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StandardCharsetsConstantsCheck.java index b40169c878..95e10ed916 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StandardCharsetsConstantsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StandardCharsetsConstantsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StandardFunctionalInterfaceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StandardFunctionalInterfaceCheck.java index 00593d1ecf..588d489682 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StandardFunctionalInterfaceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StandardFunctionalInterfaceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticFieldInitializationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticFieldInitializationCheck.java index 4ecacc2f91..8966dbf867 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticFieldInitializationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticFieldInitializationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpateCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpateCheck.java index 804670d120..6a672dd117 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpateCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpateCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheck.java index 2e5d252200..9c5df31d72 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticImportCountCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticImportCountCheck.java index 548d5f4fba..7d253ba6ba 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticImportCountCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticImportCountCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticMemberAccessCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticMemberAccessCheck.java index 8b0768d778..48491f45ce 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticMemberAccessCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticMemberAccessCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticMembersAccessCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticMembersAccessCheck.java index 089efba14c..2aab73666b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticMembersAccessCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticMembersAccessCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticMethodCheck.java index 8bb550b5f9..4023a15e53 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheck.java index fdbf0a6ebf..ac36580f14 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StreamPeekCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StreamPeekCheck.java index 3b547d1fa5..38e2ac9949 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StreamPeekCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StreamPeekCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheck.java index 9184bea7ab..569c3dd9a9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheck.java index d6f4c9be09..2fd29e5e55 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringCallsBeyondBoundsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringCallsBeyondBoundsCheck.java index eed2e9832f..e57fd507aa 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringCallsBeyondBoundsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringCallsBeyondBoundsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringConcatToTextBlockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringConcatToTextBlockCheck.java index 50c9f3178a..9857cd8392 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringConcatToTextBlockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringConcatToTextBlockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringConcatenationInLoopCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringConcatenationInLoopCheck.java index 48acc1b056..c357f1e886 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringConcatenationInLoopCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringConcatenationInLoopCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringIndexOfRangesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringIndexOfRangesCheck.java index 7fa1225b46..560a0fc52c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringIndexOfRangesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringIndexOfRangesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringIsEmptyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringIsEmptyCheck.java index b6a5c43af3..8c947b079d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringIsEmptyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringIsEmptyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringLiteralDuplicatedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringLiteralDuplicatedCheck.java index 5a8dcefd87..e903f155da 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringLiteralDuplicatedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringLiteralDuplicatedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringLiteralInsideEqualsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringLiteralInsideEqualsCheck.java index a759dffd3b..4755a93179 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringLiteralInsideEqualsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringLiteralInsideEqualsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringMethodsWithLocaleCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringMethodsWithLocaleCheck.java index 4f4dd31eb4..144a942511 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringMethodsWithLocaleCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringMethodsWithLocaleCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringOffsetMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringOffsetMethodsCheck.java index 2526be2eee..c7a0974b3d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringOffsetMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringOffsetMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringPrimitiveConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringPrimitiveConstructorCheck.java index 9828f0d932..c7fc5329d6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringPrimitiveConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringPrimitiveConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringToPrimitiveConversionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringToPrimitiveConversionCheck.java index 270939d902..42d8a1628d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringToPrimitiveConversionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringToPrimitiveConversionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StringToStringCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StringToStringCheck.java index e3f6c2c268..625325aae8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StringToStringCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StringToStringCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/StrongCipherAlgorithmCheck.java b/java-checks/src/main/java/org/sonar/java/checks/StrongCipherAlgorithmCheck.java index a18af33172..e310ea38f6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/StrongCipherAlgorithmCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/StrongCipherAlgorithmCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SubClassStaticReferenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SubClassStaticReferenceCheck.java index dc51b498da..2d268f4b41 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SubClassStaticReferenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SubClassStaticReferenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SunPackagesUsedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SunPackagesUsedCheck.java index 8ab35200c9..4d7eba6a64 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SunPackagesUsedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SunPackagesUsedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SuppressWarningsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SuppressWarningsCheck.java index f006157b4c..0cdbd3a3e6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SuppressWarningsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SuppressWarningsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SuspiciousListRemoveCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SuspiciousListRemoveCheck.java index 00434e6bed..83226c517f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SuspiciousListRemoveCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SuspiciousListRemoveCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheck.java index 9bf0ad575e..31f63f0229 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseTooBigCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseTooBigCheck.java index a1a41ae193..30a9d6af7f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseTooBigCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseTooBigCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheck.java index 2379b07bf8..5700d0afad 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheck.java index 78d7b9b26c..8be5ccf883 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchDefaultLastCaseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchDefaultLastCaseCheck.java index 0a56165b97..5f163613e9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchDefaultLastCaseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchDefaultLastCaseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheck.java index cf028234e3..24a7679279 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheck.java index 9dc365ab0e..0f14e2b9c9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchRedundantKeywordCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchRedundantKeywordCheck.java index fca8576d40..42a3ac45b5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchRedundantKeywordCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchRedundantKeywordCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchWithLabelsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchWithLabelsCheck.java index 966211464a..e2ecc26aee 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchWithLabelsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchWithLabelsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SwitchWithTooManyCasesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SwitchWithTooManyCasesCheck.java index 5211c04d19..8a9d658f3e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SwitchWithTooManyCasesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SwitchWithTooManyCasesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SymmetricEqualsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SymmetricEqualsCheck.java index 7dfbe01012..484a2272bd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SymmetricEqualsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SymmetricEqualsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SyncGetterAndSetterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SyncGetterAndSetterCheck.java index 825e2351b2..4ff49bdb1b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SyncGetterAndSetterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SyncGetterAndSetterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheck.java index 2ef1fcdd41..457f917e09 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedClassUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedClassUsageCheck.java index 2e70725a86..b749f96901 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedClassUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedClassUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheck.java index 1b702b9c95..3a47604233 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedLockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedLockCheck.java index 14ef3f2be3..07bfbce36f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedLockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedLockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedOverrideCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedOverrideCheck.java index 6b0ea40c09..a89c729828 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SynchronizedOverrideCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SynchronizedOverrideCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SystemExitCalledCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SystemExitCalledCheck.java index cd509e3b8d..6ca8dd8dce 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SystemExitCalledCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SystemExitCalledCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/SystemOutOrErrUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/SystemOutOrErrUsageCheck.java index c882d7d6b1..e69f4b163b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/SystemOutOrErrUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/SystemOutOrErrUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TabCharacterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TabCharacterCheck.java index 28a646ab9f..b993cd5e07 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TabCharacterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TabCharacterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TernaryOperatorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TernaryOperatorCheck.java index 172e993db7..ae13d81d0a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TernaryOperatorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TernaryOperatorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TestsInSeparateFolderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TestsInSeparateFolderCheck.java index eedbdd8a08..b7767fce47 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TestsInSeparateFolderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TestsInSeparateFolderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheck.java index dd984aa69e..63b991c734 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheck.java index e300af5a7b..8680cb13bc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThisExposedFromConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThisExposedFromConstructorCheck.java index 63db194ef0..f00c2d8224 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThisExposedFromConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThisExposedFromConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheck.java index e60b58f11b..333f34c173 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalCleanupCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalCleanupCheck.java index 22f9d70f75..23028bd88e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalCleanupCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalCleanupCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalWithInitialCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalWithInitialCheck.java index e3dcc9cb1c..2b98be18be 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalWithInitialCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadLocalWithInitialCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadOverridesRunCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadOverridesRunCheck.java index 67189e5222..0bdccd8e64 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadOverridesRunCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadOverridesRunCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadRunCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadRunCheck.java index 01583c3af3..4473571e53 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadRunCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadRunCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadSleepCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadSleepCheck.java index 6f0e69f059..3c18c3f5d1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadSleepCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadSleepCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadStartedInConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadStartedInConstructorCheck.java index 0308e17254..64ffd862f5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadStartedInConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadStartedInConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThreadWaitCallCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThreadWaitCallCheck.java index 94c0aa7bc3..91dfc39d66 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThreadWaitCallCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThreadWaitCallCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThrowCheckedExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThrowCheckedExceptionCheck.java index d78147105b..5f4f4e369a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThrowCheckedExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThrowCheckedExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThrowsFromFinallyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThrowsFromFinallyCheck.java index 197ba61fa7..3c86a84199 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThrowsFromFinallyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThrowsFromFinallyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheck.java index 62692d8c94..a10c85ffcc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ToArrayCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ToArrayCheck.java index 787fba89ca..76314ffcd0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ToArrayCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ToArrayCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ToStringReturningNullCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ToStringReturningNullCheck.java index f6c082f2de..ce50ec55fc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ToStringReturningNullCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ToStringReturningNullCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ToStringUsingBoxingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ToStringUsingBoxingCheck.java index 84728e595d..968fa9edb9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ToStringUsingBoxingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ToStringUsingBoxingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TodoTagPresenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TodoTagPresenceCheck.java index af2e7b242d..6a5410aa56 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TodoTagPresenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TodoTagPresenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TooLongLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TooLongLineCheck.java index 0739e7573b..e257ad87bd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TooLongLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TooLongLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheck.java index fb1bc1a845..9609bc8518 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TooManyMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TooManyMethodsCheck.java index eb445778f7..a1877d76f0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TooManyMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TooManyMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TooManyParametersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TooManyParametersCheck.java index 286c1e4814..6967bd2d9f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TooManyParametersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TooManyParametersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TooManyStatementsPerLineCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TooManyStatementsPerLineCheck.java index a2fc7e6883..6f55119dea 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TooManyStatementsPerLineCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TooManyStatementsPerLineCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TrailingCommentCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TrailingCommentCheck.java index cf3db4f7b1..49acc901a8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TrailingCommentCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TrailingCommentCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TransientFieldInNonSerializableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TransientFieldInNonSerializableCheck.java index 54c0188c3d..1837e953ed 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TransientFieldInNonSerializableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TransientFieldInNonSerializableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TryWithResourcesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TryWithResourcesCheck.java index 7fe3fe72ed..281ab95ebf 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TryWithResourcesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TryWithResourcesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TypeParametersShadowingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TypeParametersShadowingCheck.java index 6fa984ec19..d9bb4a593f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TypeParametersShadowingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TypeParametersShadowingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheck.java index 3799c13370..73165a5490 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/URLHashCodeAndEqualsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/URLHashCodeAndEqualsCheck.java index 6218de38b1..0a9e67d68b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/URLHashCodeAndEqualsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/URLHashCodeAndEqualsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheck.java index c9d042ad83..a9a87feafd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UnderscoreOnNumberCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UnderscoreOnNumberCheck.java index d425b2b277..8b2847e0e1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UnderscoreOnNumberCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UnderscoreOnNumberCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UndocumentedApiCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UndocumentedApiCheck.java index 4473cfaf44..27579a5ec0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UndocumentedApiCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UndocumentedApiCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheck.java index fc638ae83e..b59739336b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryBitOperationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryBitOperationCheck.java index 6f001e0784..d11e47355c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryBitOperationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryBitOperationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheck.java index 107473e0c9..c3b1d3fbc2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UnnecessarySemicolonCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UnnecessarySemicolonCheck.java index 63327bf918..912f1319fb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UnnecessarySemicolonCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UnnecessarySemicolonCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UnreachableCatchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UnreachableCatchCheck.java index 05307c6ef4..c1dd68ae90 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UnreachableCatchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UnreachableCatchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UppercaseSuffixesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UppercaseSuffixesCheck.java index f38632c5a8..766c150470 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UppercaseSuffixesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UppercaseSuffixesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheck.java index 167513cb07..4abc242bcc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheck.java index 7702bd78f1..a0b1558419 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheck.java index 8812f068a2..77fc228a25 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UseSwitchExpressionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UseSwitchExpressionCheck.java index 46ffe5bf19..bcd97aad30 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UseSwitchExpressionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UseSwitchExpressionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheck.java index e852ab9571..04dba366fe 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UselessExtendsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UselessExtendsCheck.java index e865805d2b..e22536678f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UselessExtendsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UselessExtendsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UselessImportCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UselessImportCheck.java index 8d8dd82ae6..96be7b949b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UselessImportCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UselessImportCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UselessIncrementCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UselessIncrementCheck.java index adef216ce9..f96fc03e7f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UselessIncrementCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UselessIncrementCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UselessPackageInfoCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UselessPackageInfoCheck.java index d5a3ddf3cf..e5d01037fd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UselessPackageInfoCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UselessPackageInfoCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UselessParenthesesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UselessParenthesesCheck.java index faa27e61af..58a8e8dc21 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UselessParenthesesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UselessParenthesesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheck.java index ff4a56f377..23fd0f674b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheck.java index 6e313895bc..a6d5b949b7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VarArgCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VarArgCheck.java index dc4dbdfb7b..d67c1f96a7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VarArgCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VarArgCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VarCanBeUsedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VarCanBeUsedCheck.java index 1bc2f433d3..c8763a1d64 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VarCanBeUsedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VarCanBeUsedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VariableDeclarationScopeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VariableDeclarationScopeCheck.java index a04c2cf333..38aa573860 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VariableDeclarationScopeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VariableDeclarationScopeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheck.java index 988f1fc0b4..6a856118b6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheck.java index c5b6ec6669..f0234c4772 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VisibleForTestingUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VisibleForTestingUsageCheck.java index d415560dfa..26bbe5b961 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VisibleForTestingUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VisibleForTestingUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheck.java index 44d7859d1e..bcc6027e0a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/VolatileVariablesOperationsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/VolatileVariablesOperationsCheck.java index f31545ef6a..d92213159b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/VolatileVariablesOperationsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/VolatileVariablesOperationsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/WaitInSynchronizeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/WaitInSynchronizeCheck.java index d0faed1fea..33af525e00 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/WaitInSynchronizeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/WaitInSynchronizeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/WaitInWhileLoopCheck.java b/java-checks/src/main/java/org/sonar/java/checks/WaitInWhileLoopCheck.java index deecb42dc7..14c693753b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/WaitInWhileLoopCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/WaitInWhileLoopCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/WaitOnConditionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/WaitOnConditionCheck.java index 6357039a16..c13b61c58f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/WaitOnConditionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/WaitOnConditionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/WeakSSLContextCheck.java b/java-checks/src/main/java/org/sonar/java/checks/WeakSSLContextCheck.java index bb81569b99..4adf34e9c6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/WeakSSLContextCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/WeakSSLContextCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheck.java index 303d47f358..f373733187 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/WildcardReturnParameterTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/WildcardReturnParameterTypeCheck.java index 67a88123f4..bd12c4d97b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/WildcardReturnParameterTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/WildcardReturnParameterTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/WrongAssignmentOperatorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/WrongAssignmentOperatorCheck.java index 9e18ee6008..88d8b83b75 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/WrongAssignmentOperatorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/WrongAssignmentOperatorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/design/AbstractCouplingChecker.java b/java-checks/src/main/java/org/sonar/java/checks/design/AbstractCouplingChecker.java index 885d637d3a..9227087fd6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/design/AbstractCouplingChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/design/AbstractCouplingChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/design/BrainMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/design/BrainMethodCheck.java index 99f8c8919f..33a27453f9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/design/BrainMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/design/BrainMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/design/ClassCouplingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/design/ClassCouplingCheck.java index 56d69e3e51..a1121af553 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/design/ClassCouplingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/design/ClassCouplingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/design/ClassImportCouplingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/design/ClassImportCouplingCheck.java index 516ff5df8f..7c7ead569e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/design/ClassImportCouplingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/design/ClassImportCouplingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/design/SingletonUsageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/design/SingletonUsageCheck.java index 19bdc021f9..d79f043ba2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/design/SingletonUsageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/design/SingletonUsageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/design/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/design/package-info.java index d3293b89f4..43f3153583 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/design/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/design/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/AbstractAssertionVisitor.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/AbstractAssertionVisitor.java index 172b00773f..071d15a78c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/AbstractAssertionVisitor.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/AbstractAssertionVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/AnnotationsHelper.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/AnnotationsHelper.java index 3889351a68..54beaeaf90 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/AnnotationsHelper.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/AnnotationsHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/ClassPatternsUtils.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/ClassPatternsUtils.java index ff70777251..9241d33701 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/ClassPatternsUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/ClassPatternsUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelper.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelper.java index 272d9e0ed1..6846a27022 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelper.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/InjectionHelper.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/InjectionHelper.java index 6120d00b55..d5cd57bacc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/InjectionHelper.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/InjectionHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/JavaPropertiesHelper.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/JavaPropertiesHelper.java index 41b1facaa8..d8f56e35d9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/JavaPropertiesHelper.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/JavaPropertiesHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/Javadoc.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/Javadoc.java index 74c90b2058..713efdaf60 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/Javadoc.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/Javadoc.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelper.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelper.java index d78c30775b..9ed4c566c5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelper.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/MethodTreeUtils.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/MethodTreeUtils.java index 4fcf1a7574..0267f11fdf 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/MethodTreeUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/MethodTreeUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/NullabilityDataUtils.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/NullabilityDataUtils.java index 42d7650b33..802d4e116b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/NullabilityDataUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/NullabilityDataUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/QuickFixHelper.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/QuickFixHelper.java index d0aae8f178..c0a8fe0a5a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/QuickFixHelper.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/QuickFixHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/RandomnessDetector.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/RandomnessDetector.java index 10b947931f..a70ab95c68 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/RandomnessDetector.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/RandomnessDetector.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/ShannonEntropy.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/ShannonEntropy.java index 0b7b643e76..206430ef6a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/ShannonEntropy.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/ShannonEntropy.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/SpringUtils.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/SpringUtils.java index 79256ac219..9e2e813b45 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/SpringUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/SpringUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/StringUtils.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/StringUtils.java index fd21ee47dd..152ac83e4a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/StringUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/StringUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/TernaryValue.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/TernaryValue.java index ef09fc7618..5dbe29deb6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/TernaryValue.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/TernaryValue.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/UnitTestUtils.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/UnitTestUtils.java index 72ea892b16..ac60e8d705 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/UnitTestUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/UnitTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/UnresolvedIdentifiersVisitor.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/UnresolvedIdentifiersVisitor.java index 47750036b9..33d62e7ef8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/UnresolvedIdentifiersVisitor.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/UnresolvedIdentifiersVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/ValueBasedUtils.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/ValueBasedUtils.java index da6a3a98e9..d105145b6f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/ValueBasedUtils.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/ValueBasedUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/helpers/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/helpers/package-info.java index ea4e4bc26e..9fc86269e6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/helpers/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/helpers/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadAbstractClassNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadAbstractClassNameCheck.java index e79b41c1a7..efeca69da5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadAbstractClassNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadAbstractClassNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadClassNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadClassNameCheck.java index 101a7e93f8..507d3208fc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadClassNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadClassNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadConstantNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadConstantNameCheck.java index 2925925cb0..153e23434c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadConstantNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadConstantNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameCheck.java index ae8ccd594a..39b0e90acc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheck.java index c68f5777b6..328d179cd7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadInterfaceNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadInterfaceNameCheck.java index b1db6ea208..95fbd465b2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadInterfaceNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadInterfaceNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalConstantNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalConstantNameCheck.java index 328c804ab1..cd812a6db5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalConstantNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalConstantNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalVariableNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalVariableNameCheck.java index 56dc1955e0..7a2de36354 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalVariableNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadLocalVariableNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadMethodNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadMethodNameCheck.java index 2d8f13bae9..e3dbe028b2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadMethodNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadMethodNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadPackageNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadPackageNameCheck.java index 937e75d74d..23ef72673c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadPackageNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadPackageNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestClassNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestClassNameCheck.java index 1c90572d73..6204e95c75 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestClassNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestClassNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestMethodNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestMethodNameCheck.java index 51bd800e7d..10d53994ef 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestMethodNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadTestMethodNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BadTypeParameterNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BadTypeParameterNameCheck.java index e73451c4c6..73fa81a81d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BadTypeParameterNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BadTypeParameterNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/BooleanMethodNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/BooleanMethodNameCheck.java index 5867224dea..7760c0bc2c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/BooleanMethodNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/BooleanMethodNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheck.java index 56fd03ab9e..397a9159cd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheck.java index 1fe7f33a6f..886423b847 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheck.java index 8319650fe6..52e547d70e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheck.java index 5270151332..fbaee03fc3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedEqualsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedEqualsCheck.java index e97f456dc4..22b131bfbe 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedEqualsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedEqualsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheck.java b/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheck.java index 17ad9de9c5..1abffa5851 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/naming/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/naming/package-info.java index b2253ec25d..3b2b803f41 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/naming/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/naming/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/package-info.java index c6ad5da755..425364007c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheck.java index f37adb9ce7..675376df8e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchType.java b/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchType.java index 214511a6c5..c9b441addd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchType.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchType.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchers.java b/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchers.java index 7bff15ffc7..6f607e417b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchers.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/AbstractRegexCheckTrackingMatchers.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/AnchorPrecedenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/AnchorPrecedenceCheck.java index 3d0cf88897..4e986002b2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/AnchorPrecedenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/AnchorPrecedenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheck.java index 4f03580248..1871982238 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheck.java index 1f6ac2898b..7c062f33c3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyLineRegexCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyLineRegexCheck.java index 0a4ac84aa8..ace8ebcc56 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyLineRegexCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyLineRegexCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyRegexGroupCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyRegexGroupCheck.java index 4ba6c3751b..6a52c96a28 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyRegexGroupCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyRegexGroupCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheck.java index 619ef2c53d..d0206ae44f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheck.java index 6024eb2af2..408119ce7a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheck.java index 741751197c..d155a98976 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheck.java index 2f8cc8108e..b54c85efcc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheck.java index 5bef26da72..ebe6ecce67 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/InvalidRegexCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/InvalidRegexCheck.java index 4341c6725b..8e2a376ef8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/InvalidRegexCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/InvalidRegexCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/MultipleWhitespaceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/MultipleWhitespaceCheck.java index 79c9fce6f5..05a40cd6ca 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/MultipleWhitespaceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/MultipleWhitespaceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheck.java index e7f5048006..344e08bc5a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/RedosCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/RedosCheck.java index 9815fd6dfc..89a8da6187 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/RedosCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/RedosCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheck.java index 82d6a172e8..2543421cab 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/RegexComplexityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/RegexComplexityCheck.java index 7cf71f118d..96800599b3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/RegexComplexityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/RegexComplexityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/RegexLookaheadCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/RegexLookaheadCheck.java index 233f0c4499..a5c2c8d77a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/RegexLookaheadCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/RegexLookaheadCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/RegexStackOverflowCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/RegexStackOverflowCheck.java index be410cab43..f16c7f6c17 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/RegexStackOverflowCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/RegexStackOverflowCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierCheck.java index 6d0e0e7124..514c674a81 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheck.java index 65589c9b8d..565e63f0fb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheck.java index 90ad6a888c..0209088555 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheck.java index 5eaefa3d4c..15bf7f5fa6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/StringReplaceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/StringReplaceCheck.java index 1ba1c3613b..fdaabb0bff 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/StringReplaceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/StringReplaceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheck.java index 0918c465e3..6c43e30939 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheck.java index a281c0aca6..d5ccfe4c01 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeCaseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeCaseCheck.java index 0199586339..c086096277 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeCaseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/UnicodeCaseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheck.java index 3b3977dbe9..62bc1ba6c0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/UnusedGroupNamesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/UnusedGroupNamesCheck.java index 8405d106b0..1e60ed0d25 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/UnusedGroupNamesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/UnusedGroupNamesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/VerboseRegexCheck.java b/java-checks/src/main/java/org/sonar/java/checks/regex/VerboseRegexCheck.java index 4c1c98c476..7422117b26 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/VerboseRegexCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/VerboseRegexCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/regex/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/regex/package-info.java index 90c9297f3e..d33d43d7f1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/regex/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/regex/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheck.java index d1ea4afa9c..a595cb8f7e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBroadcastingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBroadcastingCheck.java index b9e225d519..80d3491804 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBroadcastingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidBroadcastingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidExternalStorageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidExternalStorageCheck.java index e92d52836c..b422e33527 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidExternalStorageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidExternalStorageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheck.java index cb075fd4bb..11abd79c7d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheck.java index a6734bf75f..5cd22b8270 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheck.java index c1d35043f9..124363a7d9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheck.java index 81e3cead62..2ee076155a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheck.java index c6db97fb41..9c7371aada 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheck.java index 094488690b..60b66d91e7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/CipherBlockChainingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/CipherBlockChainingCheck.java index c4ba08fc44..e7da8d3955 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/CipherBlockChainingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/CipherBlockChainingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/ClearTextProtocolCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/ClearTextProtocolCheck.java index 98ba64b3d8..a6bdcf4819 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/ClearTextProtocolCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/ClearTextProtocolCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/CookieHttpOnlyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/CookieHttpOnlyCheck.java index 54d86c04b6..d97ed394b4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/CookieHttpOnlyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/CookieHttpOnlyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/CryptographicKeySizeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/CryptographicKeySizeCheck.java index 88548eed74..d1d4266b89 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/CryptographicKeySizeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/CryptographicKeySizeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/DataHashingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/DataHashingCheck.java index d36154a861..30fe98c9f1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/DataHashingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/DataHashingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/DebugFeatureEnabledCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/DebugFeatureEnabledCheck.java index 8e13978e60..8afb4b5681 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/DebugFeatureEnabledCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/DebugFeatureEnabledCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/DisableAutoEscapingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/DisableAutoEscapingCheck.java index 0b90b6872a..9a37b97971 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/DisableAutoEscapingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/DisableAutoEscapingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheck.java index 8cdc746f05..9be81a8456 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheck.java index d41714e163..3e5b7de082 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/EncryptionAlgorithmCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/EncryptionAlgorithmCheck.java index e0b087f2be..0c373e74fb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/EncryptionAlgorithmCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/EncryptionAlgorithmCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/ExcessiveContentRequestCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/ExcessiveContentRequestCheck.java index bfd5260ae1..8dd56012e3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/ExcessiveContentRequestCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/ExcessiveContentRequestCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/FilePermissionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/FilePermissionsCheck.java index d0a0f72252..199694556e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/FilePermissionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/FilePermissionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/IntegerToHexStringCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/IntegerToHexStringCheck.java index d00181f91c..727798fad5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/IntegerToHexStringCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/IntegerToHexStringCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/JWTWithStrongCipherCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/JWTWithStrongCipherCheck.java index 5dd045c573..77a646fed7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/JWTWithStrongCipherCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/JWTWithStrongCipherCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheck.java index e4928f840e..3e6fddc1b1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/LDAPDeserializationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/LDAPDeserializationCheck.java index 00d7c80efc..e98de57e95 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/LDAPDeserializationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/LDAPDeserializationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/LogConfigurationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/LogConfigurationCheck.java index 7b1d1ec67c..4d2b085377 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/LogConfigurationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/LogConfigurationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheck.java index b5fa1bc58b..ccd614df3e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/PasswordEncoderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/PasswordEncoderCheck.java index 2134b3eb24..d880f24df8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/PasswordEncoderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/PasswordEncoderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheck.java index cb105a61b0..98dad2f8e9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/ReceivingIntentsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/ReceivingIntentsCheck.java index 69312234df..1e3677e878 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/ReceivingIntentsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/ReceivingIntentsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/SecureCookieCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/SecureCookieCheck.java index 1f2422a8b0..19f2e9a23b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/SecureCookieCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/SecureCookieCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/ServerCertificatesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/ServerCertificatesCheck.java index 6067b14039..89df3da4c3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/ServerCertificatesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/ServerCertificatesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/UnpredictableSaltCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/UnpredictableSaltCheck.java index edb30448b0..637b7ab77b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/UnpredictableSaltCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/UnpredictableSaltCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/UserEnumerationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/UserEnumerationCheck.java index 9fa2fbc915..957fc24e17 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/UserEnumerationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/UserEnumerationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheck.java index 17df264c40..3995e2d532 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheck.java index 4213870fda..2be78f2fd6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheck.java index 1f116c54a4..5c4d08bd3c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/WebViewsFileAccessCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/WebViewsFileAccessCheck.java index 09e0008056..8f135caab5 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/WebViewsFileAccessCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/WebViewsFileAccessCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/XxeActiveMQCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/XxeActiveMQCheck.java index 7fbb7eaa7b..463ab2ca97 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/XxeActiveMQCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/XxeActiveMQCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/ZipEntryCheck.java b/java-checks/src/main/java/org/sonar/java/checks/security/ZipEntryCheck.java index 70d6d12d0c..fe7cbca85c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/ZipEntryCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/ZipEntryCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/security/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/security/package-info.java index ac000fdeed..d0eef22c50 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/security/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/security/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheck.java index d2230c9a30..72482d3002 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheck.java index 3beba03366..aece2bef17 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheck.java index 6e29ee9db1..e8924230d9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/NonSerializableWriteCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/NonSerializableWriteCheck.java index 61ed608166..ab04de05c3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/NonSerializableWriteCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/NonSerializableWriteCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/PrivateReadResolveCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/PrivateReadResolveCheck.java index bea0053c96..f94eaf8b9a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/PrivateReadResolveCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/PrivateReadResolveCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheck.java index 49cc3f09cb..e8a1caf9c7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidCheck.java index a81c3d8389..5df35b06ea 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheck.java index 0df3a20a95..c041032926 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableComparatorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableComparatorCheck.java index 9446634deb..ebb989927a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableComparatorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableComparatorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableContract.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableContract.java index 185ac2eaae..aa4dfc5128 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableContract.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableContract.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheck.java index 5d11d2dc49..5a0207b2ee 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheck.java index e6fcf261fd..9ae0744850 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheck.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheck.java index 45bf9524e0..aeb9621be0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/serialization/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/serialization/package-info.java index ff011fa041..c1297bbcd9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/serialization/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/serialization/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheck.java index 4fef7d4f52..da5d808439 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheck.java index 34b136de3e..8c8d81ccbd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheck.java index 23fc6d9f09..42fcecde17 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheck.java index 07aad7869d..8a3a6c35ff 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheck.java index 916f4edbbc..538e524db0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheck.java index 450743f4df..1d08948f0a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheck.java index 32c674e6fe..ffd32fa357 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheck.java index 04bce3d4b0..116a010d88 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheck.java index 307cb21e18..949d3dc1d0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheck.java index 56f2357827..1b159e35a7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheck.java index ffaab56f3b..a51e7da2bb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheck.java index dcaea4120b..60d05b3e89 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheck.java index e1fdafd635..608f2e80d6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheck.java index 54287a7f82..e9b5392314 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheck.java index ff7700b85f..0678307497 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheck.java index db1e9dc923..508ad9e348 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheck.java index cbd63c2d4b..d5ff2d0076 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheck.java index 96441d4504..b36f4ef37d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheck.java index f1fdf38da0..41b7cd1aa0 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheck.java index d5a09a5cc3..df5adf1bb2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheck.java index b33286546f..0698ab3769 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheck.java index 71562a9bfc..ab5ab80736 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheck.java index eff33a8b3e..3f3706ed5e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpelExpressionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpelExpressionCheck.java index 404fe6361c..76a8d526ce 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpelExpressionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpelExpressionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheck.java index a565b22da5..cde92571cd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheck.java index 8beec47d06..ad940f8f2e 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheck.java index 442feeeb9c..b681248ceb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheck.java index ec4fe2d3cd..17c3e1bd7b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheck.java index 8285a70d89..fa2703a40d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheck.java index 191b014222..4dc40e7e21 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheck.java index 802bde92a6..68af4770c9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheck.java index 31023401f0..1fda47e707 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheck.java index 61a9e33cc6..fdcbfd521a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheck.java index 3fe8100938..acedae8882 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheck.java index 869941c82b..0f822462fb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheck.java index eaf5e225af..7329e86168 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheck.java index b8b94d9fcf..47c341af38 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheck.java index b6666beff8..7d5def5edc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSessionFixationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSessionFixationCheck.java index 19f16030d4..5b54d2b97f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSessionFixationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SpringSessionFixationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheck.java index 0fb567dc5b..59bcd6b61d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheck.java index 04ce1ee7e2..bb01695aca 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheck.java index 6062f0ef06..bf710cfbea 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheck.java index 75fe48afc7..663d7e7994 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheck.java index 3323bb130c..c752a3f5a6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheck.java b/java-checks/src/main/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheck.java index b404ad165f..33104a0a04 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/spring/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/spring/package-info.java index 6d859860bf..8d0debe347 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/spring/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/spring/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheck.java b/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheck.java index 4ebc8ffd90..064ba1f193 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheck.java b/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheck.java index 5564638fd5..3421dce52a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/sustainability/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/sustainability/package-info.java index da56e6cafb..e8500b29df 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/sustainability/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/sustainability/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheck.java b/java-checks/src/main/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheck.java index 9073e4826e..e6ed88b2a9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheck.java index dcad3b81e0..a272789d61 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheck.java b/java-checks/src/main/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheck.java index 934e034a74..aaa9f642d9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheck.java index 01f5e8b10f..f2f027badb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheck.java index 948965f8ca..d1ac510803 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/synchronization/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/synchronization/package-info.java index 9da9c88bb4..e083635ac8 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/synchronization/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/synchronization/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractJUnit5NotCompliantModifierChecker.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractJUnit5NotCompliantModifierChecker.java index 41eab3a93b..12da158642 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractJUnit5NotCompliantModifierChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractJUnit5NotCompliantModifierChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractMockitoArgumentChecker.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractMockitoArgumentChecker.java index c425f9d9b4..270f04e6a4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractMockitoArgumentChecker.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractMockitoArgumentChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractOneExpectedExceptionRule.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractOneExpectedExceptionRule.java index fa79fc8631..ab2154b7ab 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractOneExpectedExceptionRule.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AbstractOneExpectedExceptionRule.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheck.java index 0ae30f0ac0..44495a541f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheck.java index 6eb15fa5a2..968dc8be59 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheck.java index 6061ee8c4b..dbc2609213 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationHelper.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationHelper.java index 2e3bb90d36..6348647cb3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationHelper.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationIndex.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationIndex.java index f602659f4e..dbbed90846 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationIndex.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationIndex.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationQuickFix.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationQuickFix.java index 4baa4b60a9..5d757c22fd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationQuickFix.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJChainSimplificationQuickFix.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheck.java index 72ac4572d3..630bfa0f12 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheck.java index 92491f5a5e..e492b132b4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheck.java index 2bf66c66aa..17d0e7e98f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheck.java index 61b65d49c9..31484d3a93 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheck.java index 1df74f1e39..17d77d15cb 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheck.java index bbcd8af9cf..00e2401ba7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheck.java index 139498c1e9..7bbe8cd174 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheck.java index 8d21a1b7aa..115e00191f 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInThreadRunCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInThreadRunCheck.java index dd99205bfe..b88ee7880b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInThreadRunCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInThreadRunCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInTryCatchCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInTryCatchCheck.java index eac868fa86..c0c3aad74d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInTryCatchCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionInTryCatchCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionTypesCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionTypesCheck.java index 7082e45dbb..383425b859 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionTypesCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionTypesCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsCompletenessCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsCompletenessCheck.java index 0535516e06..cae75b28a1 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsCompletenessCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsCompletenessCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsInTestsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsInTestsCheck.java index 117669e42e..78c1976528 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsInTestsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsInTestsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheck.java index fdf404360b..1307ac8ec2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheck.java index d81ed01e19..99111923bd 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheck.java index f7c70a148f..09fca4d791 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/ExpectedExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/ExpectedExceptionCheck.java index fbf9c9f898..6b5af6379d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/ExpectedExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/ExpectedExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/IgnoredTestsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/IgnoredTestsCheck.java index 915849e52c..cffd599f40 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/IgnoredTestsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/IgnoredTestsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheck.java index 38819d78bf..79dbe9477b 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheck.java index 9fcc1d6b50..2f3b726c0a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheck.java index ebaf6cfc95..ef5301ef62 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheck.java index 55f2269f9e..d24cf98985 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheck.java index dfca475d55..eb8dd69245 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheck.java index 0dea2ebd3e..941aa8d3c3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/MockingAllMethodsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/MockingAllMethodsCheck.java index 3e4ff3d0cb..f2dcc781b3 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/MockingAllMethodsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/MockingAllMethodsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheck.java index d05fc8b8c9..3a74a35765 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheck.java index b4dcedbb3a..db18a4e85c 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheck.java index e8c2433b74..9d2c067bf7 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/NoTestInTestClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/NoTestInTestClassCheck.java index 332cc1e0e2..a55fdefad6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/NoTestInTestClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/NoTestInTestClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheck.java index b8afc14be3..fea3f76496 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheck.java index 03de4155bd..dbf1734514 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/ParameterizedTestCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/ParameterizedTestCheck.java index 3a01e7611f..f500233e23 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/ParameterizedTestCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/ParameterizedTestCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/RandomizedTestDataCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/RandomizedTestDataCheck.java index 1a6d8c45ea..6de9e6edf9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/RandomizedTestDataCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/RandomizedTestDataCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheck.java index d6ab41f2b1..588d670bdc 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheck.java index 9facbff518..5f79b0cade 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/TestsStabilityCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/TestsStabilityCheck.java index 3e8c1d5ae9..c3cd2f9f10 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/TestsStabilityCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/TestsStabilityCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheck.java index ab491db1ce..0e06dab7ef 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/TooManyAssertionsCheck.java b/java-checks/src/main/java/org/sonar/java/checks/tests/TooManyAssertionsCheck.java index d854cedbe6..3a7f1203df 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/TooManyAssertionsCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/TooManyAssertionsCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/tests/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/tests/package-info.java index 6788498dc9..17368067a2 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/tests/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/tests/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedCollectionCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedCollectionCheck.java index 95b5d76f6f..f48fc51c86 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedCollectionCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedCollectionCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLabelCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLabelCheck.java index b870445b0a..bd8d813de6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLabelCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLabelCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLocalVariableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLocalVariableCheck.java index b87a35d7ee..e72cdae734 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLocalVariableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedLocalVariableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedMethodParameterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedMethodParameterCheck.java index 81f8eb6a90..4f73462f11 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedMethodParameterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedMethodParameterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateClassCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateClassCheck.java index 1a70b95614..95e8b63c6a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateClassCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateClassCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheck.java index e80d0f5053..c1abddcd77 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheck.java index efc6466fe1..95406c2ef6 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedReturnedDataCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedReturnedDataCheck.java index 20197cbfe9..8a691c68a4 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedReturnedDataCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedReturnedDataCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedStringBuilderCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedStringBuilderCheck.java index 4887fe7c21..74931c6415 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedStringBuilderCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedStringBuilderCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTestRuleCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTestRuleCheck.java index 813f0e832c..867fcffb3a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTestRuleCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTestRuleCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedThrowableCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedThrowableCheck.java index 2214f11384..4c29db351a 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedThrowableCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedThrowableCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTypeParameterCheck.java b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTypeParameterCheck.java index cc665586b0..df8d7c3371 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTypeParameterCheck.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/UnusedTypeParameterCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/unused/package-info.java index c6ef042194..0b9092363d 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinder.java b/java-checks/src/main/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinder.java index aa4d8e0311..52abaddeae 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinder.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinder.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/checks/unused/utils/package-info.java b/java-checks/src/main/java/org/sonar/java/checks/unused/utils/package-info.java index 5012f37450..2c8e5850f9 100644 --- a/java-checks/src/main/java/org/sonar/java/checks/unused/utils/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/checks/unused/utils/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/AnyRuleIssueFilter.java b/java-checks/src/main/java/org/sonar/java/filters/AnyRuleIssueFilter.java index 908609dc56..739b3361dd 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/AnyRuleIssueFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/AnyRuleIssueFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/BaseTreeVisitorIssueFilter.java b/java-checks/src/main/java/org/sonar/java/filters/BaseTreeVisitorIssueFilter.java index 6f5bcd8fb2..70f4b2e48b 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/BaseTreeVisitorIssueFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/BaseTreeVisitorIssueFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/EclipseI18NFilter.java b/java-checks/src/main/java/org/sonar/java/filters/EclipseI18NFilter.java index ae03d91e97..f9c5baadca 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/EclipseI18NFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/EclipseI18NFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/GeneratedCodeFilter.java b/java-checks/src/main/java/org/sonar/java/filters/GeneratedCodeFilter.java index e898ab80cf..db61039c2f 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/GeneratedCodeFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/GeneratedCodeFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/GoogleAutoFilter.java b/java-checks/src/main/java/org/sonar/java/filters/GoogleAutoFilter.java index 38f2d18800..afc6a7c7d3 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/GoogleAutoFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/GoogleAutoFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/JavaIssueFilter.java b/java-checks/src/main/java/org/sonar/java/filters/JavaIssueFilter.java index 2430d5ca64..9a6faa7086 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/JavaIssueFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/JavaIssueFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/LombokFilter.java b/java-checks/src/main/java/org/sonar/java/filters/LombokFilter.java index af03bdb56b..bc00c89024 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/LombokFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/LombokFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/PostAnalysisIssueFilter.java b/java-checks/src/main/java/org/sonar/java/filters/PostAnalysisIssueFilter.java index 4f3d795518..be1991a921 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/PostAnalysisIssueFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/PostAnalysisIssueFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/SpringFilter.java b/java-checks/src/main/java/org/sonar/java/filters/SpringFilter.java index f4422075fb..09e24deaae 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/SpringFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/SpringFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/SuppressWarningFilter.java b/java-checks/src/main/java/org/sonar/java/filters/SuppressWarningFilter.java index a7b4f5b9ad..caf0d89bea 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/SuppressWarningFilter.java +++ b/java-checks/src/main/java/org/sonar/java/filters/SuppressWarningFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/main/java/org/sonar/java/filters/package-info.java b/java-checks/src/main/java/org/sonar/java/filters/package-info.java index 7d316a868d..b1c4659917 100644 --- a/java-checks/src/main/java/org/sonar/java/filters/package-info.java +++ b/java-checks/src/main/java/org/sonar/java/filters/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AbsOnNegativeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AbsOnNegativeCheckTest.java index c9a4f99d82..2d32116400 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AbsOnNegativeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AbsOnNegativeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheckTest.java index ee168812fd..1be38a2ba0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AbstractClassNoFieldShouldBeInterfaceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheckTest.java index 6f1a550033..96509a4add 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AbstractClassWithoutAbstractMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeCheckTest.java index 58de5be309..858a8380b0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheckTest.java index 97401b6980..6433a00c95 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AccessibilityChangeOnRecordsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AllBranchesAreIdenticalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AllBranchesAreIdenticalCheckTest.java index eb23c0fb8b..dece723e73 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AllBranchesAreIdenticalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AllBranchesAreIdenticalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AnnotationDefaultArgumentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AnnotationDefaultArgumentCheckTest.java index e6ac90cfea..1f97bdb98c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AnnotationDefaultArgumentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AnnotationDefaultArgumentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheckTest.java index cbd098ecf4..f03b858781 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassShouldBeLambdaCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassesTooBigCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassesTooBigCheckTest.java index 00db0b53e5..4fe058ae0a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassesTooBigCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AnonymousClassesTooBigCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ArrayCopyLoopCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ArrayCopyLoopCheckTest.java index d19b431fc9..1e0422472a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ArrayCopyLoopCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ArrayCopyLoopCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheckTest.java index 10911434df..2e01db591a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorAfterTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheckTest.java index bda407fafc..0fe13b439b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ArrayDesignatorOnVariableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ArrayForVarArgCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ArrayForVarArgCheckTest.java index 787229d8f4..74ba6c4508 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ArrayForVarArgCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ArrayForVarArgCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheckTest.java index e356e0918a..d1746a3345 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ArrayHashCodeAndToStringCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheckTest.java index 8f0e4fd75a..30a39082a4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ArraysAsListOfPrimitiveToStreamCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AssertOnBooleanVariableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AssertOnBooleanVariableCheckTest.java index 4ccf87232c..f1e90207a8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AssertOnBooleanVariableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AssertOnBooleanVariableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AssertionsInProductionCodeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AssertionsInProductionCodeCheckTest.java index c22793d033..046e830ecd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AssertionsInProductionCodeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AssertionsInProductionCodeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheckTest.java index bfa44be7c2..e78d09e83b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AssertsOnParametersOfPublicMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AssignmentInSubExpressionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AssignmentInSubExpressionCheckTest.java index 230cba00e0..945fa481b2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AssignmentInSubExpressionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AssignmentInSubExpressionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AtLeastOneConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AtLeastOneConstructorCheckTest.java index 11aa064b72..e3570fc0a6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AtLeastOneConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AtLeastOneConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheckTest.java index ce49f6ab49..551c7cbf46 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/AvoidHighFrameratesOnMobileCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BasicAuthCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BasicAuthCheckTest.java index 57970ffda0..bef75a70c6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BasicAuthCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BasicAuthCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BatchSQLStatementsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BatchSQLStatementsCheckTest.java index d9b77df3f9..b4ce7abe04 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BatchSQLStatementsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BatchSQLStatementsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheckTest.java index 1c9a0e4962..e568b47327 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BigDecimalDoubleConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheckTest.java index 402c7b0bfd..75d4d8052d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BlockingOperationsInVirtualThreadsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BluetoothLowPowerModeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BluetoothLowPowerModeCheckTest.java index 2f17c773e3..6aff762f5b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BluetoothLowPowerModeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BluetoothLowPowerModeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BooleanInversionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BooleanInversionCheckTest.java index d6a0fc3852..83b246e3a2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BooleanInversionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BooleanInversionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BooleanLiteralCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BooleanLiteralCheckTest.java index be1c78e142..5ef702a31b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BooleanLiteralCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BooleanLiteralCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BooleanMethodReturnCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BooleanMethodReturnCheckTest.java index 05c0bb9549..5c842c4e7e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BooleanMethodReturnCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BooleanMethodReturnCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/BoxedBooleanExpressionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/BoxedBooleanExpressionsCheckTest.java index 091adfb809..7f9e96629f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/BoxedBooleanExpressionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/BoxedBooleanExpressionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CORSCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CORSCheckTest.java index b31a0498f7..3dec6ed7fd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CORSCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CORSCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CallOuterPrivateMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CallOuterPrivateMethodCheckTest.java index 47108c9d03..d25606d083 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CallOuterPrivateMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CallOuterPrivateMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheckTest.java index 4d3857f0f7..7328f0ddf9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CallSuperMethodFromInnerClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheckTest.java index 8e3371a421..7c66e29d56 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedCodeMarkedForRemovalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedMethodCheckTest.java index d60867c052..332c7ebc2b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CallToDeprecatedMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheckTest.java index 9f570f52ab..cc31841b29 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CallToFileDeleteOnExitMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CaseInsensitiveComparisonCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CaseInsensitiveComparisonCheckTest.java index 2b8da96730..493b281324 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CaseInsensitiveComparisonCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CaseInsensitiveComparisonCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CastArithmeticOperandCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CastArithmeticOperandCheckTest.java index b3b0805f74..148c0a19df 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CastArithmeticOperandCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CastArithmeticOperandCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CatchExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CatchExceptionCheckTest.java index 55e4523d16..6dc07bef55 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CatchExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CatchExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheckTest.java index 8dd5bdc54f..d508685c77 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CatchIllegalMonitorStateExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CatchNPECheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CatchNPECheckTest.java index e46c71ddbe..4330aa62c8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CatchNPECheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CatchNPECheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheckTest.java index 5165852873..01e45fe0a6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CatchOfThrowableOrErrorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CatchRethrowingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CatchRethrowingCheckTest.java index c8bfe9ab74..2fa473fea5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CatchRethrowingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CatchRethrowingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheckTest.java index 48ed316b8f..c97de24191 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CatchUsesExceptionWithContextCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ChangeMethodContractCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ChangeMethodContractCheckTest.java index 5f74a0f4c3..5786e6c813 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ChangeMethodContractCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ChangeMethodContractCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ChildClassShadowFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ChildClassShadowFieldCheckTest.java index f5540aad8a..8a9b64a929 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ChildClassShadowFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ChildClassShadowFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ClassBuilderWithMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ClassBuilderWithMethodCheckTest.java index b975c0518d..0189c37606 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ClassBuilderWithMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ClassBuilderWithMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ClassComparedByNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ClassComparedByNameCheckTest.java index 14aaea44db..042ba06ac8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ClassComparedByNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ClassComparedByNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ClassFieldCountCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ClassFieldCountCheckTest.java index 7122cb6f86..fa730f3fa0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ClassFieldCountCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ClassFieldCountCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ClassNameInClassTransformCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ClassNameInClassTransformCheckTest.java index f4bed45307..c3152ab20e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ClassNameInClassTransformCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ClassNameInClassTransformCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ClassVariableVisibilityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ClassVariableVisibilityCheckTest.java index 41d4040067..9e5af7f822 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ClassVariableVisibilityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ClassVariableVisibilityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheckTest.java index 398380e04f..439c3d9b45 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ClassWithOnlyStaticMethodsInstantiationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheckTest.java index 0c9407c41a..4aa2fd3491 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ClassWithoutHashCodeInHashStructureCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheckTest.java index 7005815c90..331169c60a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CloneMethodCallsSuperCloneCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CloneOverrideCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CloneOverrideCheckTest.java index a39c2e7f62..8fe6927fd4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CloneOverrideCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CloneOverrideCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CloneableImplementingCloneCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CloneableImplementingCloneCheckTest.java index fab966612d..7f18081e44 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CloneableImplementingCloneCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CloneableImplementingCloneCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CognitiveComplexityMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CognitiveComplexityMethodCheckTest.java index 86473cebd8..c35679c062 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CognitiveComplexityMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CognitiveComplexityMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollapsibleIfCandidateCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollapsibleIfCandidateCheckTest.java index bd01319a49..32a2d54f94 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollapsibleIfCandidateCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollapsibleIfCandidateCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectInsteadOfForeachCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectInsteadOfForeachCheckTest.java index 662df776d7..c384ed76f8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectInsteadOfForeachCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectInsteadOfForeachCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionCallingItselfCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionCallingItselfCheckTest.java index 055906ca91..524e18f46e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionCallingItselfCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionCallingItselfCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionConstructorReferenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionConstructorReferenceCheckTest.java index 6f84b7e2ee..88d0c64586 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionConstructorReferenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionConstructorReferenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionImplementationReferencedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionImplementationReferencedCheckTest.java index 716888eae8..0c7332bec6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionImplementationReferencedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionImplementationReferencedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionInappropriateCallsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionInappropriateCallsCheckTest.java index 69bc253b09..6927ba8fc8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionInappropriateCallsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionInappropriateCallsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionIsEmptyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionIsEmptyCheckTest.java index 328cc2b7df..3f20c28982 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionIsEmptyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionIsEmptyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheckTest.java index a0f28b28df..6e168aaea4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionMethodsWithLinearComplexityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheckTest.java index a78fb924f0..7381ea5a99 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionSizeAndArrayLengthCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectionsEmptyConstantsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectionsEmptyConstantsCheckTest.java index 186c616b85..f140fc1b0b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectionsEmptyConstantsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectionsEmptyConstantsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CollectorsToListCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CollectorsToListCheckTest.java index 1ea6997e81..09d38ac66b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CollectorsToListCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CollectorsToListCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CombineCatchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CombineCatchCheckTest.java index 17ce0a275f..7debb0e66e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CombineCatchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CombineCatchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CommentRegularExpressionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CommentRegularExpressionCheckTest.java index 345396b240..0d8a14fda5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CommentRegularExpressionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CommentRegularExpressionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CommentedOutCodeLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CommentedOutCodeLineCheckTest.java index 82192cd3e3..7843bccb27 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CommentedOutCodeLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CommentedOutCodeLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheckTest.java index f96368ff56..515a478cf7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CommentsMustStartWithCorrectNumberOfSlashesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CompareObjectWithEqualsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CompareObjectWithEqualsCheckTest.java index 6d3430ada3..54a8818f82 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CompareObjectWithEqualsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CompareObjectWithEqualsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheckTest.java index f45768241d..50f602d395 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CompareStringsBoxedTypesWithEqualsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CompareToNotOverloadedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CompareToNotOverloadedCheckTest.java index f5f2cd18de..ff34ae3dad 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CompareToNotOverloadedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CompareToNotOverloadedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CompareToResultTestCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CompareToResultTestCheckTest.java index 33ddaccc16..e0727200e2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CompareToResultTestCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CompareToResultTestCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CompareToReturnValueCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CompareToReturnValueCheckTest.java index f82cdf4fae..09de4be66a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CompareToReturnValueCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CompareToReturnValueCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheckTest.java index ceb2cfbbc9..b2df7540a1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConcatenationWithStringValueOfCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConditionalOnNewLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConditionalOnNewLineCheckTest.java index 7e96dad1c1..07ca444f3f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConditionalOnNewLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConditionalOnNewLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConfigurationBeanNamesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConfigurationBeanNamesCheckTest.java index 209958287d..cb12311a44 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConfigurationBeanNamesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConfigurationBeanNamesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConfusingOverloadCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConfusingOverloadCheckTest.java index d944d4d7ac..c69ffca77c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConfusingOverloadCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConfusingOverloadCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConfusingVarargCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConfusingVarargCheckTest.java index d95e11b7d0..1e53e7701a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConfusingVarargCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConfusingVarargCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConstantMathCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConstantMathCheckTest.java index 94da65e100..4afc2ef6f3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConstantMathCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConstantMathCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConstantMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConstantMethodCheckTest.java index f638fb9ae6..5d292edd70 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConstantMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConstantMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheckTest.java index 749f5da257..78fdd20ec8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConstantsShouldBeStaticFinalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConstructorCallingOverridableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConstructorCallingOverridableCheckTest.java index 0231843d6f..e62bef4199 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConstructorCallingOverridableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConstructorCallingOverridableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ConstructorInjectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ConstructorInjectionCheckTest.java index b600a9d487..931a76609e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ConstructorInjectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ConstructorInjectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ControlCharacterInLiteralCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ControlCharacterInLiteralCheckTest.java index 97f7068cda..7d630b2353 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ControlCharacterInLiteralCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ControlCharacterInLiteralCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheckTest.java index 85809a018f..cfc17e8aa8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CounterModeIVShouldNotBeReusedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheckTest.java index 019f2577f5..261d1756ba 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/CustomCryptographicAlgorithmCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DanglingElseStatementsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DanglingElseStatementsCheckTest.java index 762d22cd5d..77e2f3da7d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DanglingElseStatementsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DanglingElseStatementsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DateAndTimesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DateAndTimesCheckTest.java index 2f266684b4..ff4fb77ade 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DateAndTimesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DateAndTimesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DateFormatWeekYearCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DateFormatWeekYearCheckTest.java index af4b2db642..39e943191d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DateFormatWeekYearCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DateFormatWeekYearCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DateTimeFormatterMismatchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DateTimeFormatterMismatchCheckTest.java index 9a8fa52c77..0ec9116d73 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DateTimeFormatterMismatchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DateTimeFormatterMismatchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DateUtilsTruncateCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DateUtilsTruncateCheckTest.java index 681f47af63..157ea8cab9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DateUtilsTruncateCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DateUtilsTruncateCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DeadStoreCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DeadStoreCheckTest.java index 2aa6fa4fe7..8acdea3e41 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DeadStoreCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DeadStoreCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DefaultEncodingUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DefaultEncodingUsageCheckTest.java index e7a5cd5afe..fa0ea6933b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DefaultEncodingUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DefaultEncodingUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheckTest.java index 9e67db7191..f050da86e7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DefaultFinisherInGathererFactoryCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DefaultInitializedFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DefaultInitializedFieldCheckTest.java index 3b749f23e1..7ed731b32d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DefaultInitializedFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DefaultInitializedFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DefaultPackageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DefaultPackageCheckTest.java index e0dd30cf5d..71afcf0664 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DefaultPackageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DefaultPackageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DeprecatedArgumentsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DeprecatedArgumentsCheckTest.java index 0828ef5199..4a007db8a5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DeprecatedArgumentsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DeprecatedArgumentsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DeprecatedTagPresenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DeprecatedTagPresenceCheckTest.java index 6e97876612..8d5396599f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DeprecatedTagPresenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DeprecatedTagPresenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DepthOfInheritanceTreeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DepthOfInheritanceTreeCheckTest.java index 04a5488226..c8e620ff07 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DepthOfInheritanceTreeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DepthOfInheritanceTreeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DiamondOperatorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DiamondOperatorCheckTest.java index 65af0aa2b0..0a3cd366fb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DiamondOperatorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DiamondOperatorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DisallowedClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DisallowedClassCheckTest.java index 32227966a8..d69a3dab38 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DisallowedClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DisallowedClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DisallowedConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DisallowedConstructorCheckTest.java index e57eb09f27..dadfe8ee78 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DisallowedConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DisallowedConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DisallowedMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DisallowedMethodCheckTest.java index 7a010abd68..f3ef52dd44 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DisallowedMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DisallowedMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DisallowedThreadGroupCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DisallowedThreadGroupCheckTest.java index 632e0b7c8c..e6d70bc851 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DisallowedThreadGroupCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DisallowedThreadGroupCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DoubleBraceInitializationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DoubleBraceInitializationCheckTest.java index 236c4013fa..e884075c93 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DoubleBraceInitializationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DoubleBraceInitializationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheckTest.java index a8988ba81e..48a5334525 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DoubleCheckedLockingAssignmentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DoublePrefixOperatorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DoublePrefixOperatorCheckTest.java index 995933a3f5..f795ee7de2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DoublePrefixOperatorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DoublePrefixOperatorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheckTest.java index 40423419d7..68f452184c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DuplicateConditionIfElseIfCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/DynamicClassLoadCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/DynamicClassLoadCheckTest.java index 12210acd6b..78b488c682 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/DynamicClassLoadCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/DynamicClassLoadCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EmptyBlockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EmptyBlockCheckTest.java index c33759d49f..26af3873cd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EmptyBlockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EmptyBlockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EmptyClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EmptyClassCheckTest.java index c782cbfafb..34eb87dcaf 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EmptyClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EmptyClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EmptyFileCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EmptyFileCheckTest.java index 6d23ba0567..07ee37afe2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EmptyFileCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EmptyFileCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EmptyMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EmptyMethodsCheckTest.java index c640430762..530929c00a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EmptyMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EmptyMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EmptyStatementUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EmptyStatementUsageCheckTest.java index 9ad0ddb3fb..195b1437c1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EmptyStatementUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EmptyStatementUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EnumEqualCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EnumEqualCheckTest.java index e40c4e37b5..64e61f4491 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EnumEqualCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EnumEqualCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EnumMapCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EnumMapCheckTest.java index c34b8788ac..7a8f3b03e1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EnumMapCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EnumMapCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EnumMutableFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EnumMutableFieldCheckTest.java index 091d59d97e..7f5a2b5fff 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EnumMutableFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EnumMutableFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EnumSetCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EnumSetCheckTest.java index a696cba206..a0efa00aef 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EnumSetCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EnumSetCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EqualsArgumentTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EqualsArgumentTypeCheckTest.java index db936a0d41..b274abda63 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EqualsArgumentTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EqualsArgumentTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheckTest.java index 6869daa3e6..8a0520b748 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenInSubclassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheckTest.java index faef46e609..7ae392c828 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EqualsNotOverriddenWithCompareToCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EqualsOnAtomicClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EqualsOnAtomicClassCheckTest.java index 8e6564e1e7..53e57854bd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EqualsOnAtomicClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EqualsOnAtomicClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheckTest.java index d7f1c261f2..997e6932fd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EqualsOverriddenWithHashCodeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheckTest.java index b71b14dad1..fcfa9eb172 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EqualsParametersMarkedNonNullCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ErrorClassExtendedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ErrorClassExtendedCheckTest.java index 22b3f2ffc7..738948d4d4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ErrorClassExtendedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ErrorClassExtendedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/EscapedUnicodeCharactersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/EscapedUnicodeCharactersCheckTest.java index a4c713268b..c095a79d59 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/EscapedUnicodeCharactersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/EscapedUnicodeCharactersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheckTest.java index ae25079be7..df1a10d972 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ExceptionsShouldBeImmutableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ExpressionComplexityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ExpressionComplexityCheckTest.java index 6656b001c2..a918d01914 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ExpressionComplexityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ExpressionComplexityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/FieldModifierCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/FieldModifierCheckTest.java index d3e223516f..d2131c7731 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/FieldModifierCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/FieldModifierCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/FileHeaderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/FileHeaderCheckTest.java index 717510b294..870a8d75a5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/FileHeaderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/FileHeaderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/FilesExistsJDK8CheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/FilesExistsJDK8CheckTest.java index 57e72476be..b8de9a5d1e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/FilesExistsJDK8CheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/FilesExistsJDK8CheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/FinalClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/FinalClassCheckTest.java index 94267e925c..3a3af97dec 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/FinalClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/FinalClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/FinalizeFieldsSetCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/FinalizeFieldsSetCheckTest.java index 1c2890ae98..f6bbdea029 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/FinalizeFieldsSetCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/FinalizeFieldsSetCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/FixmeTagPresenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/FixmeTagPresenceCheckTest.java index 5e85d32c2a..8dccebb50a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/FixmeTagPresenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/FixmeTagPresenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/FloatEqualityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/FloatEqualityCheckTest.java index a636ed5491..e5e3a82fe6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/FloatEqualityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/FloatEqualityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForLoopCounterChangedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForLoopCounterChangedCheckTest.java index 2e7df8c9d5..33db076c17 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForLoopCounterChangedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForLoopCounterChangedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForLoopFalseConditionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForLoopFalseConditionCheckTest.java index 3a166d19b8..676cb292ed 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForLoopFalseConditionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForLoopFalseConditionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheckTest.java index 153640f5dc..518d9e3c95 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementAndUpdateCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementSignCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementSignCheckTest.java index d746d2b886..d4a6e72f59 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementSignCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForLoopIncrementSignCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForLoopTerminationConditionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForLoopTerminationConditionCheckTest.java index 350e602f83..3cdadfc453 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForLoopTerminationConditionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForLoopTerminationConditionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheckTest.java index db362b3cbe..474ef1ee2e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForLoopUsedAsWhileLoopCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForLoopVariableTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForLoopVariableTypeCheckTest.java index c23eaae67e..447d25b119 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForLoopVariableTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForLoopVariableTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheckTest.java index 2ae9102315..72e142efb2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ForStatelessGatherersOmitInitializerCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/GarbageCollectorCalledCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/GarbageCollectorCalledCheckTest.java index 3bb1d6c89e..f9020e5772 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/GarbageCollectorCalledCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/GarbageCollectorCalledCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/GetClassLoaderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/GetClassLoaderCheckTest.java index 8b4880db54..114c6020ff 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/GetClassLoaderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/GetClassLoaderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/GetRequestedSessionIdCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/GetRequestedSessionIdCheckTest.java index a6f423d543..74ac0cafc2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/GetRequestedSessionIdCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/GetRequestedSessionIdCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/GettersSettersOnRightFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/GettersSettersOnRightFieldCheckTest.java index f30ce2c77b..8c4386d9b2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/GettersSettersOnRightFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/GettersSettersOnRightFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/HardCodedPasswordCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/HardCodedPasswordCheckTest.java index 525575e4ba..474622eab2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/HardCodedPasswordCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/HardCodedPasswordCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/HardCodedSecretCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/HardCodedSecretCheckTest.java index e0cb17d8f8..ac906986ec 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/HardCodedSecretCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/HardCodedSecretCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/HardcodedIpCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/HardcodedIpCheckTest.java index a40c29f874..195a9273d6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/HardcodedIpCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/HardcodedIpCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/HardcodedURICheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/HardcodedURICheckTest.java index 617791081a..a2370c5fdf 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/HardcodedURICheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/HardcodedURICheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/HasNextCallingNextCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/HasNextCallingNextCheckTest.java index e5ff044857..e912553103 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/HasNextCallingNextCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/HasNextCallingNextCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/HiddenFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/HiddenFieldCheckTest.java index 5246c5993e..194bcd18de 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/HiddenFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/HiddenFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IdenticalCasesInSwitchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IdenticalCasesInSwitchCheckTest.java index 08d50388e3..f2f834f466 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IdenticalCasesInSwitchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IdenticalCasesInSwitchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheckTest.java index f66a9e9acf..216f5bc58c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IdenticalOperandOnBinaryExpressionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheckTest.java index 7c78ed88cc..ae7c044f64 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IfElseIfStatementEndsWithElseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IgnoredOperationStatusCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IgnoredOperationStatusCheckTest.java index b5649ec396..34269a55ec 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IgnoredOperationStatusCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IgnoredOperationStatusCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IgnoredReturnValueCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IgnoredReturnValueCheckTest.java index 1d5d211398..95df21f2a7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IgnoredReturnValueCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IgnoredReturnValueCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IgnoredStreamReturnValueCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IgnoredStreamReturnValueCheckTest.java index a3246cf2dc..6901b0e497 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IgnoredStreamReturnValueCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IgnoredStreamReturnValueCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ImmediateReverseBoxingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ImmediateReverseBoxingCheckTest.java index 372de372f5..1e227873bc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ImmediateReverseBoxingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ImmediateReverseBoxingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheckTest.java index 2d9bce4472..bdf6f55504 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ImmediatelyReturnedVariableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ImplementsEnumerationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ImplementsEnumerationCheckTest.java index 891e88d94c..37f88f260d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ImplementsEnumerationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ImplementsEnumerationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InappropriateRegexpCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InappropriateRegexpCheckTest.java index 06da5c54a4..88de49a205 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InappropriateRegexpCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InappropriateRegexpCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IncorrectOrderOfMembersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IncorrectOrderOfMembersCheckTest.java index 69ef597417..0d466c9442 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IncorrectOrderOfMembersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IncorrectOrderOfMembersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheckTest.java index 163e7a5d17..ca02be3057 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IncrementDecrementInSubExpressionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IndentationAfterConditionalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IndentationAfterConditionalCheckTest.java index 673eb41935..bd78d8aee8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IndentationAfterConditionalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IndentationAfterConditionalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IndentationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IndentationCheckTest.java index 0eddaa3b82..39d13bbea5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IndentationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IndentationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheckTest.java index dd5a5d9fda..1a71fc3083 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IndexOfWithPositiveNumberCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfNonSerializableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfNonSerializableCheckTest.java index 6ef63667ac..4bc34c8069 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfNonSerializableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfNonSerializableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfSerializableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfSerializableCheckTest.java index da7b2ab513..0e26865b57 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfSerializableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InnerClassOfSerializableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InnerClassTooManyLinesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InnerClassTooManyLinesCheckTest.java index 011cfed749..2284ae064a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InnerClassTooManyLinesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InnerClassTooManyLinesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InnerStaticClassesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InnerStaticClassesCheckTest.java index 7b7c8d0af5..ecd075c5f0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InnerStaticClassesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InnerStaticClassesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InputStreamOverrideReadCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InputStreamOverrideReadCheckTest.java index d14cf39aa3..0329f74c4f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InputStreamOverrideReadCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InputStreamOverrideReadCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InputStreamReadCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InputStreamReadCheckTest.java index 4a06e1376a..4f3c904187 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InputStreamReadCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InputStreamReadCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InsecureCreateTempFileCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InsecureCreateTempFileCheckTest.java index 6f4bfb0521..a38a46a656 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InsecureCreateTempFileCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InsecureCreateTempFileCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InstanceOfPatternMatchingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InstanceOfPatternMatchingCheckTest.java index b22bc1a6d7..88a778a963 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InstanceOfPatternMatchingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InstanceOfPatternMatchingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheckTest.java index 533129db54..820e7e589c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InstanceofUsedOnExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InterfaceAsConstantContainerCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InterfaceAsConstantContainerCheckTest.java index 5bad326728..4adc0bb3d4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InterfaceAsConstantContainerCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InterfaceAsConstantContainerCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheckTest.java index 959b6700d4..53cc46c625 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InterfaceOrSuperclassShadowingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InterruptedExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InterruptedExceptionCheckTest.java index 2e38d26938..c8124e6450 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InterruptedExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InterruptedExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/InvalidDateValuesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/InvalidDateValuesCheckTest.java index 21127f6918..7fdf88f9a3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/InvalidDateValuesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/InvalidDateValuesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IsInstanceMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IsInstanceMethodCheckTest.java index 08ddf46b7f..e99fed8c4d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IsInstanceMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IsInstanceMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IterableIteratorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IterableIteratorCheckTest.java index c5822ead38..dd41c9470d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IterableIteratorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IterableIteratorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/IteratorNextExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/IteratorNextExceptionCheckTest.java index 31d0eccd52..4e6985fd32 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/IteratorNextExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/IteratorNextExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/JacksonDeserializationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/JacksonDeserializationCheckTest.java index f90658ae8a..278c4e6c1a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/JacksonDeserializationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/JacksonDeserializationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheckTest.java index b84b7e1e39..c1ec54c199 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/JdbcDriverExplicitLoadingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/JpaEagerFetchTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/JpaEagerFetchTypeCheckTest.java index 07ec5e4f75..da284a5eaa 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/JpaEagerFetchTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/JpaEagerFetchTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheckTest.java index 9ad050c5a0..f6a6fb19de 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/KeySetInsteadOfEntrySetCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheckTest.java index ad4e67fbe8..84210bbf8a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/KnownCapacityHashBasedCollectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheckTest.java index 5437928e03..542e1c003c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LabelsShouldNotBeUsedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LambdaOptionalParenthesisCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LambdaOptionalParenthesisCheckTest.java index 4dc342a430..f196e3df7c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LambdaOptionalParenthesisCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LambdaOptionalParenthesisCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LambdaSingleExpressionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LambdaSingleExpressionCheckTest.java index bcd342f920..9cf2d1de65 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LambdaSingleExpressionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LambdaSingleExpressionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LambdaTooBigCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LambdaTooBigCheckTest.java index 81730b6927..74a9459c16 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LambdaTooBigCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LambdaTooBigCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LambdaTypeParameterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LambdaTypeParameterCheckTest.java index fb8b139ec8..a7d43203ed 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LambdaTypeParameterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LambdaTypeParameterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LazyArgEvaluationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LazyArgEvaluationCheckTest.java index 94005343d9..54f56ea69e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LazyArgEvaluationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LazyArgEvaluationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LeastSpecificTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LeastSpecificTypeCheckTest.java index c6beefbe9c..36075a2d7e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LeastSpecificTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LeastSpecificTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheckTest.java index ad4af95277..87babee5b1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceEndLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheckTest.java index d7f493f005..9feb619310 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LeftCurlyBraceStartLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LoggedRethrownExceptionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LoggedRethrownExceptionsCheckTest.java index 4a2ef80f9b..72354e08e4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LoggedRethrownExceptionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LoggedRethrownExceptionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LoggerClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LoggerClassCheckTest.java index 05a5625c29..2125f33194 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LoggerClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LoggerClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LoggersDeclarationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LoggersDeclarationCheckTest.java index 1c89df7846..ecef91197f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LoggersDeclarationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LoggersDeclarationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheckTest.java index e3949971c3..337643694e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LongBitsToDoubleOnIntCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheckTest.java index 2cc9e61d6f..0f4624c364 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LoopExecutingAtMostOnceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/LoopsOnSameSetCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/LoopsOnSameSetCheckTest.java index 3a47ed3cd7..070a642ee5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/LoopsOnSameSetCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/LoopsOnSameSetCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MagicNumberCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MagicNumberCheckTest.java index ad09476d5c..41f6efdfa9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MagicNumberCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MagicNumberCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MainMethodThrowsExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MainMethodThrowsExceptionCheckTest.java index 8bea766d24..7ba11070d6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MainMethodThrowsExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MainMethodThrowsExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MapKeyNotComparableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MapKeyNotComparableCheckTest.java index 449e26b00e..9fedc9e22a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MapKeyNotComparableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MapKeyNotComparableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheckTest.java index 03ce535ff3..a8e94bf04f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MarkdownJavadocSyntaxCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MathClampMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MathClampMethodsCheckTest.java index aa37a640a6..ac8ccc8d61 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MathClampMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MathClampMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MathClampRangeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MathClampRangeCheckTest.java index e78d373d19..ea8fd53223 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MathClampRangeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MathClampRangeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MathOnFloatCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MathOnFloatCheckTest.java index 06ba225dcd..f05c9c5c41 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MathOnFloatCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MathOnFloatCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheckTest.java index d1b795e1c7..ada4731069 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MembersDifferOnlyByCapitalizationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MethodComplexityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MethodComplexityCheckTest.java index 1441b07caf..bd77ada4c1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MethodComplexityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MethodComplexityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MethodIdenticalImplementationsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MethodIdenticalImplementationsCheckTest.java index 2968fd4591..cc4ebf3128 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MethodIdenticalImplementationsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MethodIdenticalImplementationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MethodOnlyCallsSuperCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MethodOnlyCallsSuperCheckTest.java index 6b1cfe31f2..a1048e0485 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MethodOnlyCallsSuperCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MethodOnlyCallsSuperCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MethodParametersOrderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MethodParametersOrderCheckTest.java index bb000f75cc..640724739c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MethodParametersOrderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MethodParametersOrderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MethodTooBigCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MethodTooBigCheckTest.java index b4e69ad81e..3b94a76c39 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MethodTooBigCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MethodTooBigCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheckTest.java index 6d0a66aae6..1f7a4e1167 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MethodWithExcessiveReturnsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MismatchPackageDirectoryCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MismatchPackageDirectoryCheckTest.java index 0f39b387d2..cf7b492bad 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MismatchPackageDirectoryCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MismatchPackageDirectoryCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MissingBeanValidationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MissingBeanValidationCheckTest.java index 5d573f67c0..7fe0801127 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MissingBeanValidationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MissingBeanValidationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MissingCurlyBracesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MissingCurlyBracesCheckTest.java index 3d50934e8d..cf94af2fb3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MissingCurlyBracesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MissingCurlyBracesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MissingDeprecatedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MissingDeprecatedCheckTest.java index b5dea0cb8c..71eda1c6d9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MissingDeprecatedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MissingDeprecatedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheckTest.java index d433cec893..4809ac4ef7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MissingNewLineAtEndOfFileCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheckTest.java index 2aa4cb4511..a35e5c8e4f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MissingOverridesInRecordWithArrayComponentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MissingPackageInfoCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MissingPackageInfoCheckTest.java index 5b26f64cd3..d6d507c9e5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MissingPackageInfoCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MissingPackageInfoCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ModifiersOrderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ModifiersOrderCheckTest.java index 1663667ef4..9ad6b6513b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ModifiersOrderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ModifiersOrderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ModulusEqualityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ModulusEqualityCheckTest.java index da51dfe5a4..31997a3cd8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ModulusEqualityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ModulusEqualityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheckTest.java index 6a1cd02394..8ae6d716f7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MultilineBlocksCurlyBracesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/MutableMembersUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/MutableMembersUsageCheckTest.java index 2a8be20b5e..9b60638e43 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/MutableMembersUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/MutableMembersUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NPEThrowCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NPEThrowCheckTest.java index 154f1076bd..1e5c2023cd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NPEThrowCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NPEThrowCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NestedBlocksCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NestedBlocksCheckTest.java index 11509f1c37..238890e15e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NestedBlocksCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NestedBlocksCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NestedEnumStaticCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NestedEnumStaticCheckTest.java index b51e4d2414..27de5b737f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NestedEnumStaticCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NestedEnumStaticCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NestedIfStatementsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NestedIfStatementsCheckTest.java index 6ad564d28d..d1825cc3df 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NestedIfStatementsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NestedIfStatementsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NestedSwitchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NestedSwitchCheckTest.java index c4cca980d4..07fecbe7d8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NestedSwitchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NestedSwitchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NestedTernaryOperatorsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NestedTernaryOperatorsCheckTest.java index f6bae3b2ec..532197bdbd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NestedTernaryOperatorsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NestedTernaryOperatorsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NestedTryCatchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NestedTryCatchCheckTest.java index 60357197f3..a7931b1a75 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NestedTryCatchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NestedTryCatchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NioFileDeleteCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NioFileDeleteCheckTest.java index 45897e942c..7e5d08e004 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NioFileDeleteCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NioFileDeleteCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheckTest.java index d965c9992d..83fe4904b9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NoCheckstyleTagPresenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NoPmdTagPresenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NoPmdTagPresenceCheckTest.java index 4f7af4acbf..37ff7ccdcd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NoPmdTagPresenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NoPmdTagPresenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NoSonarCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NoSonarCheckTest.java index 6f66d8df17..f1c2d321f0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NoSonarCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NoSonarCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NonShortCircuitLogicCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NonShortCircuitLogicCheckTest.java index aa873c966d..b74c6e1162 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NonShortCircuitLogicCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NonShortCircuitLogicCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NonStaticClassInitializerCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NonStaticClassInitializerCheckTest.java index 43fb00ecfa..341155fdc4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NonStaticClassInitializerCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NonStaticClassInitializerCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NotifyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NotifyCheckTest.java index ed45d505d3..026e424e93 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NotifyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NotifyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NullCheckWithInstanceofCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NullCheckWithInstanceofCheckTest.java index 050fd3477f..cbeeba97bc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NullCheckWithInstanceofCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NullCheckWithInstanceofCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheckTest.java index 2abc6a3d89..4072e7685d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NullReturnedOnComputeIfPresentOrAbsentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheckTest.java index 1b13289953..db476e5658 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/NullShouldNotBeUsedWithOptionalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OSCommandsPathCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OSCommandsPathCheckTest.java index bdb15b1b73..634c741cbe 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OSCommandsPathCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OSCommandsPathCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheckTest.java index c408e9a9f2..b3ae8aa713 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ObjectCreatedOnlyToCallGetClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeCheckTest.java index 8c7e762113..83745c9c80 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheckTest.java index c912e867a9..bd3ce76123 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverloadedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheckTest.java index 29192eb11c..ea426527b1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCallsSuperFinalizeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheckTest.java index 54333be765..ef774be334 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheckTest.java index 230d81434b..e9f5728c93 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ObjectFinalizeOverriddenNotPublicCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OctalValuesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OctalValuesCheckTest.java index 0a2d37f1c7..a9d9b28325 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OctalValuesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OctalValuesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OmitPermittedTypesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OmitPermittedTypesCheckTest.java index 18a500c4d0..924e86379d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OmitPermittedTypesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OmitPermittedTypesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OneClassInterfacePerFileCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OneClassInterfacePerFileCheckTest.java index 6ca8fdb417..6e15552297 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OneClassInterfacePerFileCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OneClassInterfacePerFileCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OneDeclarationPerLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OneDeclarationPerLineCheckTest.java index da3b4b83ff..62bad9f65b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OneDeclarationPerLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OneDeclarationPerLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OperatorPrecedenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OperatorPrecedenceCheckTest.java index 54ccd24e5c..6efb084456 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OperatorPrecedenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OperatorPrecedenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OptionalAsParameterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OptionalAsParameterCheckTest.java index a35bdaee9c..c114f8a0c7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OptionalAsParameterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OptionalAsParameterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OutputStreamOverrideWriteCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OutputStreamOverrideWriteCheckTest.java index 69dffd575d..2e691f07e7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OutputStreamOverrideWriteCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OutputStreamOverrideWriteCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OverrideAnnotationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OverrideAnnotationCheckTest.java index 8744a787c2..50635e3d67 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OverrideAnnotationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OverrideAnnotationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/OverwrittenKeyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/OverwrittenKeyCheckTest.java index f6e41d5ef5..cc9377bb6f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/OverwrittenKeyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/OverwrittenKeyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ParameterReassignedToCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ParameterReassignedToCheckTest.java index 5d1c6355c9..cafbe1a429 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ParameterReassignedToCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ParameterReassignedToCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ParsingErrorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ParsingErrorCheckTest.java index 92df6e6978..c686ce731f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ParsingErrorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ParsingErrorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PatternMatchUsingIfCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PatternMatchUsingIfCheckTest.java index 3b34f68325..d19f64ebc3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PatternMatchUsingIfCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PatternMatchUsingIfCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PopulateBeansCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PopulateBeansCheckTest.java index f8eacaa1c3..ec22ccaa40 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PopulateBeansCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PopulateBeansCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PredictableSeedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PredictableSeedCheckTest.java index 8759e4ba0b..e2dcc41da5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PredictableSeedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PredictableSeedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PreferStreamAnyMatchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PreferStreamAnyMatchCheckTest.java index d74001a794..8c632460a6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PreferStreamAnyMatchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PreferStreamAnyMatchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementAndResultSetCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementAndResultSetCheckTest.java index 38281aacc8..38897caeb8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementAndResultSetCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementAndResultSetCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheckTest.java index b3742c96ef..53d1170e0e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PreparedStatementLoopInvariantCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheckTest.java index 0b6c4a78ae..bca3f046e8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PrimitiveTypeBoxingWithToStringCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheckTest.java index 2c7f21992c..41dccc7b1b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PrimitiveWrappersInTernaryOperatorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PrimitivesMarkedNullableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PrimitivesMarkedNullableCheckTest.java index aa0253e6a7..0effa8afad 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PrimitivesMarkedNullableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PrimitivesMarkedNullableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PrintfFailCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PrintfFailCheckTest.java index 977c4c2a4a..1d412b2d8a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PrintfFailCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PrintfFailCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PrintfMisuseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PrintfMisuseCheckTest.java index 631c716c14..ea0f3f4ea7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PrintfMisuseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PrintfMisuseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheckTest.java index 0cfd3fde5d..e83d1c0f71 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PrivateFieldUsedLocallyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheckTest.java index d84682abc4..7fcaffc21d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ProtectedMemberInFinalClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PseudoRandomCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PseudoRandomCheckTest.java index 94278bd79c..0a0fe13119 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PseudoRandomCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PseudoRandomCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheckTest.java index 730a31f2a9..1b481133fe 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PublicConstructorInAbstractClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheckTest.java index adfd07a695..dcb951a377 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PublicStaticFieldShouldBeFinalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/PublicStaticMutableMembersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/PublicStaticMutableMembersCheckTest.java index 1b5075e488..89892e70bc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/PublicStaticMutableMembersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/PublicStaticMutableMembersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheckTest.java index 66a0109dfd..4319e8283b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/QueryOnlyRequiredFieldsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RandomFloatToIntCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RandomFloatToIntCheckTest.java index 7d856879fd..3350d3c509 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RandomFloatToIntCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RandomFloatToIntCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RawByteBitwiseOperationsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RawByteBitwiseOperationsCheckTest.java index 204dad6e70..6fa787069a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RawByteBitwiseOperationsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RawByteBitwiseOperationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RawExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RawExceptionCheckTest.java index 1d856ee2c8..b49dd5ab27 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RawExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RawExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RawTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RawTypeCheckTest.java index 10ca6d9d8d..416f5ccfce 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RawTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RawTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReadObjectSynchronizedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReadObjectSynchronizedCheckTest.java index 64bf06d9f7..176d82cda0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReadObjectSynchronizedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReadObjectSynchronizedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RecordDuplicatedGetterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RecordDuplicatedGetterCheckTest.java index 15dcc70143..fc40e34c7c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RecordDuplicatedGetterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RecordDuplicatedGetterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RecordInsteadOfClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RecordInsteadOfClassCheckTest.java index ffc3cfa5e2..6c55d8128b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RecordInsteadOfClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RecordInsteadOfClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheckTest.java index 5ab23346f6..7514f70513 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RecordPatternInsteadOfFieldAccessCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantAbstractMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantAbstractMethodCheckTest.java index db27bd37f8..20bd0c0dcd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantAbstractMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantAbstractMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantCloseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantCloseCheckTest.java index fd27df114b..8371bb4f39 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantCloseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantCloseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantJumpCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantJumpCheckTest.java index 8eeb8449f2..347ffa3621 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantJumpCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantJumpCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantModifierCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantModifierCheckTest.java index f0c4e258df..3e9c8279cd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantModifierCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantModifierCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheckTest.java index 3446326725..7071961053 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantNullabilityAnnotationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantRecordMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantRecordMethodsCheckTest.java index 4513db423d..33138a8727 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantRecordMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantRecordMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantStreamCollectCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantStreamCollectCheckTest.java index cc6e248a59..20d00e24b1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantStreamCollectCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantStreamCollectCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantThrowsDeclarationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantThrowsDeclarationCheckTest.java index 630a8762bc..b066ee9c75 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantThrowsDeclarationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantThrowsDeclarationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RedundantTypeCastCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RedundantTypeCastCheckTest.java index 8a58b1f7ed..a19eb45aa7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RedundantTypeCastCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RedundantTypeCastCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheckTest.java index 4721a6c824..9ae98077b5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReflectionOnNonRuntimeAnnotationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheckTest.java index a275e73ae2..a818c97e26 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RegexPatternsNeedlesslyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReleaseSensorsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReleaseSensorsCheckTest.java index c4607ee94e..217ac7d825 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReleaseSensorsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReleaseSensorsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheckTest.java index 35e82e7430..1fa63ea259 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RemoveTypeFromUnusedPatternCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RepeatAnnotationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RepeatAnnotationCheckTest.java index 16fe07453b..9b9e2b4532 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RepeatAnnotationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RepeatAnnotationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheckTest.java index 6acf1e1df3..f6c745ee38 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReplaceGuavaWithJavaCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheckTest.java index 4c5a2f656a..2d2b1f50e9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReplaceLambdaByMethodRefCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheckTest.java index 53d787a410..20b1c11a73 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReplaceUnusedExceptionParameterWithUnnamedPatternCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheckTest.java index 06c102da8e..36f7be04df 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RestrictedIdentifiersUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ResultSetIsLastCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ResultSetIsLastCheckTest.java index e97e3fab2d..f5e6d420ab 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ResultSetIsLastCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ResultSetIsLastCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheckTest.java index cc2f432b33..fa3ece23a0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReturnEmptyArrayNotNullCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReturnInFinallyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReturnInFinallyCheckTest.java index 7bc07223a0..621c17f0b1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReturnInFinallyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReturnInFinallyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheckTest.java index 2f54bcf3f9..2d0a8e38c4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReturnOfBooleanExpressionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReuseRandomCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReuseRandomCheckTest.java index b9f55bf3e4..c654ef01e0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReuseRandomCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReuseRandomCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReverseSequencedCollectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReverseSequencedCollectionCheckTest.java index b6df87a907..b3d14a1fcc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReverseSequencedCollectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReverseSequencedCollectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheckTest.java index 91f61a543f..d85f9bbf6b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ReversedMethodSequencedCollectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheckTest.java index 0be4b26275..3b55220b9f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceDifferentLineAsNextBlockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheckTest.java index a304208b07..0f87894918 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceSameLineAsNextBlockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceStartLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceStartLineCheckTest.java index 3d189b5ff6..555e2e6027 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceStartLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RightCurlyBraceStartLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/RunFinalizersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/RunFinalizersCheckTest.java index cd8135fac1..e605dff0eb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/RunFinalizersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/RunFinalizersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SQLInjectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SQLInjectionCheckTest.java index 68406b1dd1..4e07d07d51 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SQLInjectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SQLInjectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheckTest.java index 9c56df6aa4..1d67aaaad6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ScheduledThreadPoolExecutorZeroCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SelectorMethodArgumentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SelectorMethodArgumentCheckTest.java index 241bfd1f0b..afcdb04c22 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SelectorMethodArgumentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SelectorMethodArgumentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SelfAssignmentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SelfAssignmentCheckTest.java index a8a62a37e9..60dc84cd4f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SelfAssignmentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SelfAssignmentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ServletInstanceFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ServletInstanceFieldCheckTest.java index 7de632da9a..f1cb3ff137 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ServletInstanceFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ServletInstanceFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheckTest.java index 4218d9a71a..437390c5eb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ServletMethodsExceptionsThrownCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheckTest.java index cbbec5e445..c4b88365eb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SeveralBreakOrContinuePerLoopCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ShiftOnIntOrLongCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ShiftOnIntOrLongCheckTest.java index a09b4b1bf4..7f999f32f4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ShiftOnIntOrLongCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ShiftOnIntOrLongCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SillyEqualsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SillyEqualsCheckTest.java index 3c17396d21..25b3b10b12 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SillyEqualsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SillyEqualsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SillyStringOperationsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SillyStringOperationsCheckTest.java index d7a2d70ca7..770a7dc706 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SillyStringOperationsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SillyStringOperationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SimpleClassNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SimpleClassNameCheckTest.java index 2921a7af6e..f7328b0412 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SimpleClassNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SimpleClassNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheckTest.java index 7eaf9322c6..e9904ed374 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SimpleStringLiteralForSingleLineStringsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheckTest.java index dc6dc330c6..a17daa75d4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SingleIfInsteadOfPatternMatchGuardCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheckTest.java index 4d927c181a..5af3183e93 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SpecializedFunctionalInterfacesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StandardCharsetsConstantsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StandardCharsetsConstantsCheckTest.java index 2a5a6a329e..e61caaf736 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StandardCharsetsConstantsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StandardCharsetsConstantsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StandardFunctionalInterfaceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StandardFunctionalInterfaceCheckTest.java index d73c5ed338..f9bd77e5dd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StandardFunctionalInterfaceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StandardFunctionalInterfaceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticFieldInitializationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticFieldInitializationCheckTest.java index 9397821ad5..5e44b19859 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticFieldInitializationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticFieldInitializationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpateCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpateCheckTest.java index 71414c8a7c..83d720759f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpateCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpateCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheckTest.java index 268b4792b4..de229a5b45 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticFieldUpdateInConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticImportCountCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticImportCountCheckTest.java index 4d41283208..a195e687fb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticImportCountCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticImportCountCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticMemberAccessCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticMemberAccessCheckTest.java index 4a80ed6b17..6411f38287 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticMemberAccessCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticMemberAccessCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticMembersAccessCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticMembersAccessCheckTest.java index e2b9eb2c6c..c3d3ce13bd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticMembersAccessCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticMembersAccessCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticMethodCheckTest.java index 5a1ae73f21..0ff06a2918 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheckTest.java index 3b1f909f68..831a53502e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StaticMultithreadedUnsafeFieldsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StreamPeekCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StreamPeekCheckTest.java index 1a99203a7d..96670fcc04 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StreamPeekCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StreamPeekCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheckTest.java index bd1a5dbbc0..28b49734fd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderConcatenationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheckTest.java index d534c02282..36f8ab1784 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringBufferAndBuilderWithCharCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringCallsBeyondBoundsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringCallsBeyondBoundsCheckTest.java index 4768a845c2..19f3c10287 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringCallsBeyondBoundsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringCallsBeyondBoundsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringConcatToTextBlockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringConcatToTextBlockCheckTest.java index 60f227e335..d368288db1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringConcatToTextBlockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringConcatToTextBlockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringConcatenationInLoopCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringConcatenationInLoopCheckTest.java index 04d373eaad..f02bf6bd4b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringConcatenationInLoopCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringConcatenationInLoopCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringIndexOfRangesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringIndexOfRangesCheckTest.java index cf297fa436..907404b51b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringIndexOfRangesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringIndexOfRangesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringIsEmptyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringIsEmptyCheckTest.java index 2978f19c1e..251fec2c01 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringIsEmptyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringIsEmptyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringLiteralDuplicatedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringLiteralDuplicatedCheckTest.java index 737ce36226..7d71dd2c7f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringLiteralDuplicatedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringLiteralDuplicatedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringLiteralInsideEqualsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringLiteralInsideEqualsCheckTest.java index 49689d2120..f72ce7da53 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringLiteralInsideEqualsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringLiteralInsideEqualsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringMethodsWithLocaleCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringMethodsWithLocaleCheckTest.java index 1e58a399a8..dc681f6ac7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringMethodsWithLocaleCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringMethodsWithLocaleCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringOffsetMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringOffsetMethodsCheckTest.java index ee171abff6..56a72c72eb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringOffsetMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringOffsetMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringPrimitiveConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringPrimitiveConstructorCheckTest.java index 397b5c7633..c15198527a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringPrimitiveConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringPrimitiveConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringToPrimitiveConversionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringToPrimitiveConversionCheckTest.java index 5db498e95a..b42738445a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringToPrimitiveConversionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringToPrimitiveConversionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StringToStringCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StringToStringCheckTest.java index 89d35b5feb..f83bf6482a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StringToStringCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StringToStringCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/StrongCipherAlgorithmCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/StrongCipherAlgorithmCheckTest.java index 89f326d562..8aaee2aa63 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/StrongCipherAlgorithmCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/StrongCipherAlgorithmCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SubClassStaticReferenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SubClassStaticReferenceCheckTest.java index b0b3a10b84..5d07847549 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SubClassStaticReferenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SubClassStaticReferenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SunPackagesUsedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SunPackagesUsedCheckTest.java index 286cdef497..296bfca8e9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SunPackagesUsedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SunPackagesUsedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SuppressWarningsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SuppressWarningsCheckTest.java index e8b0747c78..eb56d484a4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SuppressWarningsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SuppressWarningsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SuspiciousListRemoveCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SuspiciousListRemoveCheckTest.java index cd8b87c465..5a6fc29758 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SuspiciousListRemoveCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SuspiciousListRemoveCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheckTest.java index 762b2e2e1b..6085b17ef7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchAtLeastThreeCasesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseTooBigCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseTooBigCheckTest.java index b8a2995792..99c6129e5c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseTooBigCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseTooBigCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheckTest.java index 5c856b0fa6..fe76d45731 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchCaseWithoutBreakCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheckTest.java index 692f55c2b7..456805c39f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchCasesShouldBeCommaSeparatedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchDefaultLastCaseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchDefaultLastCaseCheckTest.java index fc3de0d6aa..d33e335f9a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchDefaultLastCaseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchDefaultLastCaseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheckTest.java index 153bb1560c..5bc47e4314 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchInsteadOfIfSequenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheckTest.java index 2b1af5d946..1dd5e85cc5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchLastCaseIsDefaultCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchRedundantKeywordCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchRedundantKeywordCheckTest.java index c5527f92f6..2847d3f265 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchRedundantKeywordCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchRedundantKeywordCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchWithLabelsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchWithLabelsCheckTest.java index 0990f98e0c..885fb600bb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchWithLabelsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchWithLabelsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SwitchWithTooManyCasesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SwitchWithTooManyCasesCheckTest.java index d381ece04b..55a2c99839 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SwitchWithTooManyCasesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SwitchWithTooManyCasesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SymmetricEqualsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SymmetricEqualsCheckTest.java index 3596ff1bc2..c187bbd1e6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SymmetricEqualsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SymmetricEqualsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SyncGetterAndSetterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SyncGetterAndSetterCheckTest.java index a3724fa27c..37d427f1b9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SyncGetterAndSetterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SyncGetterAndSetterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheckTest.java index 114c70d2d8..cf9d30755e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SynchronizationOnStringOrBoxedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedClassUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedClassUsageCheckTest.java index 391222a7c1..3e7c373226 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedClassUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedClassUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheckTest.java index 78678aeac8..303163ac16 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedFieldAssignmentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedLockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedLockCheckTest.java index d6ccbc6e4a..04c81697e8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedLockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedLockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedOverrideCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedOverrideCheckTest.java index fb32fbd80f..750c719531 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SynchronizedOverrideCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SynchronizedOverrideCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SystemExitCalledCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SystemExitCalledCheckTest.java index ef45cfca4b..b81ed307c5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SystemExitCalledCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SystemExitCalledCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/SystemOutOrErrUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/SystemOutOrErrUsageCheckTest.java index 4e3522cef3..20083406ec 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/SystemOutOrErrUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/SystemOutOrErrUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TabCharacterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TabCharacterCheckTest.java index 020e5f83c2..c70b534b78 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TabCharacterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TabCharacterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TernaryOperatorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TernaryOperatorCheckTest.java index aa959cd92e..bf22c80725 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TernaryOperatorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TernaryOperatorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TestsInSeparateFolderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TestsInSeparateFolderCheckTest.java index bd13c6ec07..ac2e37ef5e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TestsInSeparateFolderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TestsInSeparateFolderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheckTest.java index 115176b22a..998fe7a076 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TextBlockTabsAndSpacesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheckTest.java index 5c83467386..515dee3da9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TextBlocksInComplexExpressionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThisExposedFromConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThisExposedFromConstructorCheckTest.java index f060782066..aa5323c923 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThisExposedFromConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThisExposedFromConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheckTest.java index 2e727b3b04..2118a36cfc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadAsRunnableArgumentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalCleanupCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalCleanupCheckTest.java index 6a5eaaf42e..96cb4caca6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalCleanupCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalCleanupCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalWithInitialCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalWithInitialCheckTest.java index e275e8141d..a94e3d07f2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalWithInitialCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadLocalWithInitialCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadOverridesRunCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadOverridesRunCheckTest.java index e42046ff49..69493e1e32 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadOverridesRunCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadOverridesRunCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadRunCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadRunCheckTest.java index 0ccb548723..3622547ae6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadRunCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadRunCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadSleepCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadSleepCheckTest.java index f21379844c..f8eccb3308 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadSleepCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadSleepCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadStartedInConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadStartedInConstructorCheckTest.java index 083fb37676..1a6d2b70a2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadStartedInConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadStartedInConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThreadWaitCallCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThreadWaitCallCheckTest.java index 1175e8ec5b..adbcc0f3e1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThreadWaitCallCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThreadWaitCallCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThrowCheckedExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThrowCheckedExceptionCheckTest.java index 974e710813..20bffda09f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThrowCheckedExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThrowCheckedExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThrowsFromFinallyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThrowsFromFinallyCheckTest.java index 56aebd905d..6882aaf43e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThrowsFromFinallyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThrowsFromFinallyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheckTest.java index e2a8d07beb..de506273db 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ThrowsSeveralCheckedExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ToArrayCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ToArrayCheckTest.java index 04351420a1..bf2e6c536e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ToArrayCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ToArrayCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ToStringReturningNullCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ToStringReturningNullCheckTest.java index 8f5442b7b9..09b9a652d0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ToStringReturningNullCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ToStringReturningNullCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ToStringUsingBoxingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ToStringUsingBoxingCheckTest.java index 9ba87291df..278915d557 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ToStringUsingBoxingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ToStringUsingBoxingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TodoTagPresenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TodoTagPresenceCheckTest.java index 1a13b8da4d..e52a3b55ae 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TodoTagPresenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TodoTagPresenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TooLongLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TooLongLineCheckTest.java index 30821eb828..684a9ce897 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TooLongLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TooLongLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheckTest.java index c34e381ff6..3380f72201 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TooManyLinesOfCodeInFileCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TooManyMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TooManyMethodsCheckTest.java index dcb3e579ac..518be1f831 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TooManyMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TooManyMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TooManyParametersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TooManyParametersCheckTest.java index ee206e9282..d5b417f5f5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TooManyParametersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TooManyParametersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TooManyStatementsPerLineCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TooManyStatementsPerLineCheckTest.java index 7f00cf261e..6fd38fec40 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TooManyStatementsPerLineCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TooManyStatementsPerLineCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TrailingCommentCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TrailingCommentCheckTest.java index 2a45d41846..fd1d219e3e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TrailingCommentCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TrailingCommentCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TransientFieldInNonSerializableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TransientFieldInNonSerializableCheckTest.java index d96d958414..e763f7c1aa 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TransientFieldInNonSerializableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TransientFieldInNonSerializableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TryWithResourcesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TryWithResourcesCheckTest.java index 0f3edb2eeb..c48a921372 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TryWithResourcesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TryWithResourcesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TypeParametersShadowingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TypeParametersShadowingCheckTest.java index f5010a32c3..344d0cae6a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TypeParametersShadowingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TypeParametersShadowingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheckTest.java index c4cbd59b91..958683c2e2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/TypeUpperBoundNotFinalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/URLHashCodeAndEqualsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/URLHashCodeAndEqualsCheckTest.java index 40cfdc7223..bcf3027d0f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/URLHashCodeAndEqualsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/URLHashCodeAndEqualsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheckTest.java index 95d2205ad6..40c2c788c1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UnderscoreMisplacedOnNumberCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UnderscoreOnNumberCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UnderscoreOnNumberCheckTest.java index e95284045d..eea16b1c99 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UnderscoreOnNumberCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UnderscoreOnNumberCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UndocumentedApiCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UndocumentedApiCheckTest.java index 4d4d1d751b..7d48c634c4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UndocumentedApiCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UndocumentedApiCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheckTest.java index b4d08ef346..7c1a30bc4b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UnnamedVariableShouldUseVarCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryBitOperationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryBitOperationCheckTest.java index cd853630f7..0acb78b190 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryBitOperationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryBitOperationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheckTest.java index 13e11e23da..25bb342463 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UnnecessaryEscapeSequencesInTextBlockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UnnecessarySemicolonCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UnnecessarySemicolonCheckTest.java index ac9f83209d..ff930a2437 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UnnecessarySemicolonCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UnnecessarySemicolonCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UnreachableCatchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UnreachableCatchCheckTest.java index b9343c9fd3..abb651b44b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UnreachableCatchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UnreachableCatchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UppercaseSuffixesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UppercaseSuffixesCheckTest.java index 64f36079e8..e8753540a0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UppercaseSuffixesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UppercaseSuffixesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheckTest.java index d7821fae33..63fe3da1be 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UseIsEmptyToTestEmptinessOfStringBuilderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheckTest.java index dedd05cebe..38a6908244 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UseMotionSensorWithoutGyroscopeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheckTest.java index 692804ac59..49c71f308a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UseOfSequentialForSequentialGathererCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UseSwitchExpressionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UseSwitchExpressionCheckTest.java index ee3b680527..59bd74bfd0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UseSwitchExpressionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UseSwitchExpressionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheckTest.java index a4c2ab562c..4f2ceb6b22 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UseTransformClassInsteadOfBuildCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UselessExtendsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UselessExtendsCheckTest.java index 9239698589..4a0e45a589 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UselessExtendsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UselessExtendsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UselessImportCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UselessImportCheckTest.java index b305d81311..a19d5600ee 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UselessImportCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UselessImportCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UselessIncrementCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UselessIncrementCheckTest.java index 4838a62f02..72451d5a68 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UselessIncrementCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UselessIncrementCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UselessPackageInfoCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UselessPackageInfoCheckTest.java index 970deda580..326a66e54c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UselessPackageInfoCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UselessPackageInfoCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UselessParenthesesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UselessParenthesesCheckTest.java index 7a7f2ffe3d..10d57e3441 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UselessParenthesesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UselessParenthesesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheckTest.java index 51faf31b26..12c8f3671d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/UtilityClassWithPublicConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheckTest.java index a850b1c5af..ac69f9ef29 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/ValueBasedObjectsShouldNotBeSerializedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VarArgCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VarArgCheckTest.java index f41e0ea116..e4c0edc0e8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VarArgCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VarArgCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VarCanBeUsedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VarCanBeUsedCheckTest.java index c1d1695d5c..708611c169 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VarCanBeUsedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VarCanBeUsedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VariableDeclarationScopeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VariableDeclarationScopeCheckTest.java index 1e2c13e23b..dfc0128212 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VariableDeclarationScopeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VariableDeclarationScopeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheckTest.java index e943380bc8..430d6435dc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadNotSynchronizedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheckTest.java index ed3e6678c8..231cb34c93 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VirtualThreadUnsupportedMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VisibleForTestingUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VisibleForTestingUsageCheckTest.java index 0b70e0f449..f747b6591d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VisibleForTestingUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VisibleForTestingUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheckTest.java index 8c5017ff4b..d8a7e57108 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VolatileNonPrimitiveFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/VolatileVariablesOperationsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/VolatileVariablesOperationsCheckTest.java index a1831bae65..d516d71d45 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/VolatileVariablesOperationsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/VolatileVariablesOperationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/WaitInSynchronizeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/WaitInSynchronizeCheckTest.java index bf76981748..44e28d3092 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/WaitInSynchronizeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/WaitInSynchronizeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/WaitInWhileLoopCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/WaitInWhileLoopCheckTest.java index 5a8cc6ad67..97238120ca 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/WaitInWhileLoopCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/WaitInWhileLoopCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/WaitOnConditionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/WaitOnConditionCheckTest.java index e054e38fee..d37fa9ec2e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/WaitOnConditionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/WaitOnConditionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/WeakSSLContextCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/WeakSSLContextCheckTest.java index fd777a4fe4..7d055744a3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/WeakSSLContextCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/WeakSSLContextCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheckTest.java index 122e0d2680..265b02ecac 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/WildcardImportsShouldNotBeUsedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/WildcardReturnParameterTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/WildcardReturnParameterTypeCheckTest.java index 0b7736b98c..8d4b6114ab 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/WildcardReturnParameterTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/WildcardReturnParameterTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/WrongAssignmentOperatorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/WrongAssignmentOperatorCheckTest.java index a351b95934..9fa7bb0352 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/WrongAssignmentOperatorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/WrongAssignmentOperatorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/design/BrainMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/design/BrainMethodCheckTest.java index 3d32a1ae36..b9721d18fc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/design/BrainMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/design/BrainMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/design/ClassCouplingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/design/ClassCouplingCheckTest.java index 019c960509..fdca2570a8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/design/ClassCouplingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/design/ClassCouplingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/design/ClassImportCouplingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/design/ClassImportCouplingCheckTest.java index 39fd0f37fc..2bcd4653ab 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/design/ClassImportCouplingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/design/ClassImportCouplingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/design/SingletonUsageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/design/SingletonUsageCheckTest.java index 793e8bd7df..ec54531981 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/design/SingletonUsageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/design/SingletonUsageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/AnnotationsHelperTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/AnnotationsHelperTest.java index 82dc32f5f0..1581c59fd8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/AnnotationsHelperTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/AnnotationsHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/ClassPatternsUtilsTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/ClassPatternsUtilsTest.java index bef13b3abc..2da11fa5ba 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/ClassPatternsUtilsTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/ClassPatternsUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelperTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelperTest.java index f300dbef2f..da5ce263d0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelperTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/DeprecatedCheckerHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java index a818f0503c..2c05e3f0a6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/ExpressionsHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/HashCacheTestHelper.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/HashCacheTestHelper.java index adb71a50d8..0c15ff0da7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/HashCacheTestHelper.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/HashCacheTestHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java index c0aa434505..ea97e9493e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/JParserTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/JavaPropertiesHelperTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/JavaPropertiesHelperTest.java index 89e4d1889f..f7889a182a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/JavaPropertiesHelperTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/JavaPropertiesHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/JavadocTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/JavadocTest.java index 8ccdae7b66..2df6ed35eb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/JavadocTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/JavadocTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelperTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelperTest.java index 204b485a25..c76358e934 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelperTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/LatinAlphabetLanguagesHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/MethodTreeUtilsTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/MethodTreeUtilsTest.java index b1e93c0d96..874263a2d7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/MethodTreeUtilsTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/MethodTreeUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/NullabilityDataUtilsTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/NullabilityDataUtilsTest.java index a34fe1b239..0fc1857bd7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/NullabilityDataUtilsTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/NullabilityDataUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/QuickFixHelperTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/QuickFixHelperTest.java index f826ddc741..fe387d1f8c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/QuickFixHelperTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/QuickFixHelperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/RandomnessDetectorTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/RandomnessDetectorTest.java index 00f472131c..98f61d1090 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/RandomnessDetectorTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/RandomnessDetectorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java index 28f7df116a..b04314fdb0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/ReassignmentFinderTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/ShannonEntropyTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/ShannonEntropyTest.java index 565a082d41..3357df170d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/ShannonEntropyTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/ShannonEntropyTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/SpringUtilsTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/SpringUtilsTest.java index 7cefd3b062..76ab678e7e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/SpringUtilsTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/SpringUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/StringUtilsTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/StringUtilsTest.java index 2d63490087..a14412d6aa 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/StringUtilsTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/StringUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/TernaryValueTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/TernaryValueTest.java index baf0d80e6f..8806ac5297 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/TernaryValueTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/TernaryValueTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/UnitTestUtilsTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/UnitTestUtilsTest.java index e9569802b5..b8e0d029b3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/UnitTestUtilsTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/UnitTestUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/helpers/ValueBasedUtilsTest.java b/java-checks/src/test/java/org/sonar/java/checks/helpers/ValueBasedUtilsTest.java index e9e3b1e151..f54a26887b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/helpers/ValueBasedUtilsTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/helpers/ValueBasedUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadAbstractClassNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadAbstractClassNameCheckTest.java index 1e9561d05f..3d57c5a7a4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadAbstractClassNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadAbstractClassNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadClassNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadClassNameCheckTest.java index 2e7bb21307..bb23364fe2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadClassNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadClassNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadConstantNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadConstantNameCheckTest.java index 057121be30..a6892b17c0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadConstantNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadConstantNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameCheckTest.java index a6a2d594e8..284e51f71d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheckTest.java index 2dfc4f5a6c..de3e530f49 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadFieldNameStaticNonFinalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadInterfaceNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadInterfaceNameCheckTest.java index 631d964568..5886781a49 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadInterfaceNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadInterfaceNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalConstantNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalConstantNameCheckTest.java index b2b432a869..da326b10f8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalConstantNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalConstantNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalVariableNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalVariableNameCheckTest.java index dad3db365d..d42b84a0c6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalVariableNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadLocalVariableNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadMethodNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadMethodNameCheckTest.java index 306f2f051e..39d782e20e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadMethodNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadMethodNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadPackageNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadPackageNameCheckTest.java index c396b7bf1d..b06e4fd626 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadPackageNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadPackageNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestClassNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestClassNameCheckTest.java index fe3ea13b65..7322b7b73c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestClassNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestClassNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestMethodNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestMethodNameCheckTest.java index 97bde8394c..288fc06af7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestMethodNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadTestMethodNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BadTypeParameterNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BadTypeParameterNameCheckTest.java index 59723d0e03..ec31b71291 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BadTypeParameterNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BadTypeParameterNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/BooleanMethodNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/BooleanMethodNameCheckTest.java index 85ecaf3304..3ca50e3d27 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/BooleanMethodNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/BooleanMethodNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheckTest.java index 35e379966a..4e643330d6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/ClassNamedLikeExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheckTest.java index 99b043f596..7d07db6e8c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/FieldNameMatchingTypeNameCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheckTest.java index 8f7a331d6e..a676222261 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/KeywordAsIdentifierCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheckTest.java index 4ef680d34d..e9d9bef316 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNameSameAsClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedEqualsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedEqualsCheckTest.java index 551621c079..11fe71e2bb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedEqualsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedEqualsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheckTest.java index 3d1a6c8257..f4bb4277d0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/naming/MethodNamedHashcodeOrEqualCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/AbstractRegexCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/AbstractRegexCheckTest.java index 8971037973..af19b276de 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/AbstractRegexCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/AbstractRegexCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/AnchorPrecedenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/AnchorPrecedenceCheckTest.java index d5594d1573..76ee541abd 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/AnchorPrecedenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/AnchorPrecedenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheckTest.java index 9973a0ec8e..69387b9f61 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/CanonEqFlagInRegexCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheckTest.java index ab685e93f8..1cda1380c2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/DuplicatesInCharacterClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyLineRegexCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyLineRegexCheckTest.java index 10d7549ed7..c2a1ed06c0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyLineRegexCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyLineRegexCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyRegexGroupCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyRegexGroupCheckTest.java index ad58780ddb..a0bb1a0247 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyRegexGroupCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyRegexGroupCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheckTest.java index dfe178a35a..138339a1eb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/EmptyStringRepetitionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheckTest.java index 58d151e656..e896331175 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/EscapeSequenceControlCharacterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheckTest.java index 755040d4ad..5b7e54ec97 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/GraphemeClustersInClassesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheckTest.java index 0ba34a2895..5bd4989bd0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBackReferenceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheckTest.java index bfdd25a2da..1a02ca2ac9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/ImpossibleBoundariesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/InvalidRegexCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/InvalidRegexCheckTest.java index b02747f883..9cd3f203d8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/InvalidRegexCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/InvalidRegexCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/MultipleWhitespaceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/MultipleWhitespaceCheckTest.java index 34a58d9e7b..3b9b423324 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/MultipleWhitespaceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/MultipleWhitespaceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheckTest.java index e477578656..b6989e920a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/PossessiveQuantifierContinuationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/RedosCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/RedosCheckTest.java index f251b00328..e2e835e729 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/RedosCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/RedosCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheckTest.java index 4be580f5cc..af39b06fa8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/RedundantRegexAlternativesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/RegexComplexityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/RegexComplexityCheckTest.java index 02776a4ec2..5db0c7cc04 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/RegexComplexityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/RegexComplexityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/RegexLookaheadCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/RegexLookaheadCheckTest.java index 778b7711f7..21f0d74a41 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/RegexLookaheadCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/RegexLookaheadCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/RegexStackOverflowCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/RegexStackOverflowCheckTest.java index e6e0b1488d..0ff9dd70ad 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/RegexStackOverflowCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/RegexStackOverflowCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierCheckTest.java index a2de7dfcb2..ed817705e5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheckTest.java index 8a0f27908b..a3e3b83dc0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/ReluctantQuantifierWithEmptyContinuationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheckTest.java index 26aa6850de..777dc26ac9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharCharacterClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheckTest.java index a9f6f588a2..6a4f9e22f5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/SingleCharacterAlternationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/StringReplaceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/StringReplaceCheckTest.java index 16aab1e9d5..7e3910d60a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/StringReplaceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/StringReplaceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheckTest.java index 281e84fb55..8ee2a1a245 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/SuperfluousCurlyBraceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheckTest.java index 17fadeb5c2..e30f5506bb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeAwareCharClassesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeCaseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeCaseCheckTest.java index 87a3ab2240..94d152fda0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeCaseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/UnicodeCaseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheckTest.java index f9bc4f0a74..23bad85a93 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/UnquantifiedNonCapturingGroupCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/UnusedGroupNamesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/UnusedGroupNamesCheckTest.java index bd5db7c33a..f752bc3b90 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/UnusedGroupNamesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/UnusedGroupNamesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/regex/VerboseRegexCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/regex/VerboseRegexCheckTest.java index e5a7f3ab70..0d784cbbdf 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/regex/VerboseRegexCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/regex/VerboseRegexCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheckTest.java index c1eb4fef1f..abcaaafeef 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBiometricAuthWithoutCryptoCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBroadcastingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBroadcastingCheckTest.java index ce3ddb7728..b30d721d91 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBroadcastingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidBroadcastingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidExternalStorageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidExternalStorageCheckTest.java index 53149af05f..d3c5b18190 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidExternalStorageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidExternalStorageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheckTest.java index 648034e8d0..f8724b701a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidMobileDatabaseEncryptionKeysCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheckTest.java index 5188ed4a44..4b9b0b47a2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidNonAuthenticatedUsersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheckTest.java index e8d86b34f5..6a09b691a4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidPersistentUniqueIdentifierCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheckTest.java index 83cafd037b..c63372a813 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedDatabaseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheckTest.java index 9b85c49090..49eb5871b0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AndroidUnencryptedFilesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheckTest.java index b404954f48..01a87017c8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/AuthorizationsStrongDecisionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/CipherBlockChainingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/CipherBlockChainingCheckTest.java index 7a5cdfed21..8ddefeaac3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/CipherBlockChainingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/CipherBlockChainingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/ClearTextProtocolCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/ClearTextProtocolCheckTest.java index 838cb39044..efee2d6fd6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/ClearTextProtocolCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/ClearTextProtocolCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/CookieHttpOnlyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/CookieHttpOnlyCheckTest.java index 6880c31b69..a22fa5c073 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/CookieHttpOnlyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/CookieHttpOnlyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/CryptographicKeySizeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/CryptographicKeySizeCheckTest.java index 38c52bb4a3..96437f09d0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/CryptographicKeySizeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/CryptographicKeySizeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/DataHashingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/DataHashingCheckTest.java index 7a02b3d1e2..5ed2f2a401 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/DataHashingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/DataHashingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/DebugFeatureEnabledCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/DebugFeatureEnabledCheckTest.java index 537435c3ce..dd5216cce4 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/DebugFeatureEnabledCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/DebugFeatureEnabledCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/DisableAutoEscapingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/DisableAutoEscapingCheckTest.java index 4300cb4ef2..2dfffe0897 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/DisableAutoEscapingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/DisableAutoEscapingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheckTest.java index 9ac42dd665..337abc0e55 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/DisclosingTechnologyFingerprintsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheckTest.java index 3d520ed948..465364fb03 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/EmptyDatabasePasswordCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/EncryptionAlgorithmCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/EncryptionAlgorithmCheckTest.java index 83cf49fecd..21bbb80d5d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/EncryptionAlgorithmCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/EncryptionAlgorithmCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/ExcessiveContentRequestCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/ExcessiveContentRequestCheckTest.java index 2040f4e7a9..f3611b66ef 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/ExcessiveContentRequestCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/ExcessiveContentRequestCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/FilePermissionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/FilePermissionsCheckTest.java index f5c09f329e..6bdaf476ff 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/FilePermissionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/FilePermissionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/IntegerToHexStringCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/IntegerToHexStringCheckTest.java index 076e411476..945cfd229d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/IntegerToHexStringCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/IntegerToHexStringCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/JWTWithStrongCipherCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/JWTWithStrongCipherCheckTest.java index d6ced63c5f..ac436e9bc7 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/JWTWithStrongCipherCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/JWTWithStrongCipherCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheckTest.java index bb2f29a795..e3ab09447d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/LDAPAuthenticatedConnectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/LDAPDeserializationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/LDAPDeserializationCheckTest.java index 358b0eb131..187351cad5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/LDAPDeserializationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/LDAPDeserializationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/LogConfigurationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/LogConfigurationCheckTest.java index 6637104ac9..50307e2936 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/LogConfigurationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/LogConfigurationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheckTest.java index a9e741e3ef..48ddd54c09 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/OpenSAML2AuthenticationBypassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/PasswordEncoderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/PasswordEncoderCheckTest.java index 8214dfb1f9..783f2583eb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/PasswordEncoderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/PasswordEncoderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheckTest.java index 7cf083ec68..7287d7fc6e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/PubliclyWritableDirectoriesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/ReceivingIntentsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/ReceivingIntentsCheckTest.java index c86ef7e8d1..41e95c5cae 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/ReceivingIntentsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/ReceivingIntentsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/SecureCookieCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/SecureCookieCheckTest.java index 05a8a14fa3..f25ec66a3f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/SecureCookieCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/SecureCookieCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/ServerCertificatesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/ServerCertificatesCheckTest.java index faf8a72eb0..340fe11423 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/ServerCertificatesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/ServerCertificatesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/UnpredictableSaltCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/UnpredictableSaltCheckTest.java index 294de0c6c2..d06a6f535f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/UnpredictableSaltCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/UnpredictableSaltCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/UserEnumerationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/UserEnumerationCheckTest.java index d1c3cfdee9..bcd1bb44f8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/UserEnumerationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/UserEnumerationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheckTest.java index ba8affe88f..9d8c4451e9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/VerifiedServerHostnamesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheckTest.java index bc6a6d5274..9da1144d0c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptInterfaceCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheckTest.java index 121e86a71a..17d3b52ae0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/WebViewJavaScriptSupportCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/WebViewsFileAccessCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/WebViewsFileAccessCheckTest.java index b50690f92b..2a81a01e20 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/WebViewsFileAccessCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/WebViewsFileAccessCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/XxeActiveMQCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/XxeActiveMQCheckTest.java index df0fd592e8..441209a07f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/XxeActiveMQCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/XxeActiveMQCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/security/ZipEntryCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/security/ZipEntryCheckTest.java index 7504c0a075..a09068cc33 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/security/ZipEntryCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/security/ZipEntryCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheckTest.java index 769a5eca46..4945b5aecb 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/BlindSerialVersionUidCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheckTest.java index cc6e3ada3d..1e3f37daab 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/CustomSerializationMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheckTest.java index 53c030baba..9ae319c01c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/ExternalizableClassConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/NonSerializableWriteCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/NonSerializableWriteCheckTest.java index b943702292..92984926d5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/NonSerializableWriteCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/NonSerializableWriteCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/PrivateReadResolveCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/PrivateReadResolveCheckTest.java index a36d4d098f..aec5a7c3b5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/PrivateReadResolveCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/PrivateReadResolveCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheckTest.java index 4be89e72eb..dede1fcb43 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/RecordSerializationIgnoredMembersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidCheckTest.java index f30cd4f011..e995f3b719 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheckTest.java index 585551bde3..85c36e5d38 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerialVersionUidInRecordCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableComparatorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableComparatorCheckTest.java index 43093fd7d9..396a4ac227 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableComparatorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableComparatorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableContractTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableContractTest.java index 3f2ae3658c..c6eca6d231 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableContractTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableContractTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheckTest.java index 3dbe358b64..d05e599bde 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableFieldInSerializableClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheckTest.java index f725d53b4e..2a268cc2ac 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableObjectInSessionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheckTest.java index 928c7b1039..6b491d0afa 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/serialization/SerializableSuperConstructorCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheckTest.java index 27dea8536b..80a07f6399 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsCalledViaThisCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheckTest.java index 805fd8b429..331a7a9de9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsOnConfigurationClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheckTest.java index db1b1c754e..7d5d40262a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/AsyncMethodsReturnTypeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheckTest.java index 432f89e674..fcab375a86 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnConstructorWhenMultipleConstructorsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheckTest.java index 3fd7041e6d..711d86d197 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/AutowiredOnMultipleConstructorsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheckTest.java index ecff06a054..e7f9103894 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/AvoidQualifierOnBeanMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheckTest.java index c9437f7a44..b51b5e61d2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/BeforeAndAfterTransactionContractCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheckTest.java index 9f809ef4cc..ac66da1453 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/CacheAnnotationsShouldOnlyBeAppliedToConcreteClassesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheckTest.java index e5b02d89cd..ee89111c1c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithRestControllerReplacementCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheckTest.java index 73ecfb374e..602c39228e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/ControllerWithSessionAttributesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheckTest.java index 8eb3504b6e..353c6379b2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/DirectBeanMethodInvocationWithoutProxyCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheckTest.java index af3eda3a98..76ceb56fc2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/DirtyContextShouldUseCorrectControlModeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheckTest.java index 19f19c6ccc..9d97d184ff 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/EventListenerMethodOneArgCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheckTest.java index d2643cbad4..ff41146a31 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/FieldDependencyInjectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheckTest.java index 00b0bf75f5..4ed3c7e3bf 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/InitBinderMethodsMustBeVoidCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheckTest.java index ccd3d540e4..8afa4750c8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/MissingPathVariableAnnotationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheckTest.java index 85653383ed..5eb3258510 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/ModelAttributeNamingConventionForSpELCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheckTest.java index 867021657e..e4136896a9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/NonSingletonAutowiredInSingletonCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheckTest.java index 9ee99c5ded..8a7fe078b0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/NullableInjectedFieldsHaveDefaultValueCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheckTest.java index 380cdab92c..2dea9ac5cc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/OptionalRestParametersShouldBeObjectsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheckTest.java index c7da61e3df..268b1cbec9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/PersistentEntityUsedAsRequestParameterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheckTest.java index c88b3d2de6..0066f504ed 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/RequestMappingMethodPublicCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheckTest.java index b03d8681ca..f7e279ab9d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/ScheduledOnlyOnNoArgMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpelExpressionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpelExpressionCheckTest.java index 0547c0ff0b..e061462bbf 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpelExpressionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpelExpressionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheckTest.java index bcd83479bb..ebb6878e8a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAntMatcherOrderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheckTest.java index 8c3e6c9227..34bb7deda1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringAutoConfigurationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheckTest.java index dab8c22f6d..c18e107d36 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeanNamingConventionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheckTest.java index 07cfc31a57..3c4281f071 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringBeansShouldBeAccessibleCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheckTest.java index 5ccc5eb501..295fa321f3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringCacheableWithCachePutCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheckTest.java index 366e1b59f4..c67568b6a3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithNonAutowiredMembersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheckTest.java index 2ac7a0de58..6af2248098 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComponentWithWrongScopeCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheckTest.java index 3390ae7a2f..76badccc9c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringComposedRequestMappingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheckTest.java index 520aa3716f..505ad5ab6a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConfigurationWithAutowiredFieldsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheckTest.java index 60474816c7..5979efc67e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringConstructorInjectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheckTest.java index 815101cf1f..1bde8342b8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringIncompatibleTransactionalCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheckTest.java index bcc06dfaea..fff2b54948 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringRequestMappingMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheckTest.java index 7e953f2f46..8c2fc0ec26 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringScanDefaultPackageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheckTest.java index da339cfd34..449ce26543 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSecurityDisableCSRFCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSessionFixationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSessionFixationCheckTest.java index ee273fd6e5..ee8955e3da 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSessionFixationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SpringSessionFixationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheckTest.java index 07012d8064..d64d7d9a13 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/StaticFieldInjectionNotSupportedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheckTest.java index efbca55e82..335b3fefc1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/StatusCodesOnResponseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheckTest.java index e8b234982a..de4992f0ff 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/SuperfluousResponseBodyAnnotationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheckTest.java index 73c6838542..53466b5403 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/TransactionalMethodVisibilityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheckTest.java index c0352d933c..bcfbbeae81 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/UsePageableParameterForPagedQueryCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheckTest.java index 16886900eb..a3f68bb44d 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/spring/ValueAnnotationShouldInjectPropertyOrSpELCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheckTest.java index 9c0fc4fb3f..379573ea3e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidExactAlarmCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheckTest.java index 48b8d062d4..d38117161e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/sustainability/AndroidFusedLocationProviderClientCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheckTest.java index f86bc9e6d7..71bae0c5ad 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/synchronization/DoubleCheckedLockingCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheckTest.java index 378c1f6391..ed5c455419 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/synchronization/SynchronizationOnGetClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheckTest.java index dee4a49fd8..cf9f50928e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/synchronization/TwoLocksWaitCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheckTest.java index fee4696c4a..243b1176c3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/synchronization/ValueBasedObjectUsedForLockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheckTest.java index aaa60de639..7e214b240f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/synchronization/WriteObjectTheOnlySynchronizedMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheckTest.java index 12e2a41709..1b7c7cf7cf 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJApplyConfigurationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheckTest.java index 171ef2fb7a..47efcff2a0 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJAssertionsInConsumerCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheckTest.java index 218fd4cbed..1c53676d9c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJChainSimplificationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheckTest.java index 6abdf3265e..9b30aded7c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJConsecutiveAssertionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheckTest.java index 87f282c64f..98c0dde2d2 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJContextBeforeAssertionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheckTest.java index 4ef007cef2..02170645ce 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertJTestForEmptinessCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheckTest.java index ded5844b92..57b2515558 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertThatThrownByAloneCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java index 4b708b50f5..dc1631cd6c 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertTrueInsteadOfDedicatedAssertCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheckTest.java index 449be274fd..1ad6c2eb31 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionArgumentOrderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheckTest.java index e82f30d088..2c0ae8b871 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionCompareToSelfCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheckTest.java index ef51895399..3a1e07f178 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionFailInCatchBlockCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInThreadRunCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInThreadRunCheckTest.java index 7c827ff1d1..0f46394700 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInThreadRunCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInThreadRunCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInTryCatchCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInTryCatchCheckTest.java index 16557a9c98..b7b37bc4f8 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInTryCatchCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionInTryCatchCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionTypesCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionTypesCheckTest.java index 6ea483e0d2..069a6803c6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionTypesCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionTypesCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsCompletenessCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsCompletenessCheckTest.java index 85943b6448..0324d1eebc 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsCompletenessCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsCompletenessCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsInTestsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsInTestsCheckTest.java index fb8e4299cd..6792942abf 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsInTestsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsInTestsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheckTest.java index f87c70db68..91a3d586e3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/AssertionsWithoutMessageCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheckTest.java index fcd4302488..2be16c382e 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/BooleanOrNullLiteralInAssertionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheckTest.java index be62bf987a..54e6fbe970 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/CallSuperInTestCaseCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/ExpectedExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/ExpectedExceptionCheckTest.java index fe27e3f35a..7a52e9b297 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/ExpectedExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/ExpectedExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/IgnoredTestsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/IgnoredTestsCheckTest.java index cdae929b2b..5cbe6661a1 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/IgnoredTestsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/IgnoredTestsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheckTest.java index aeadfb19cc..db26fb7986 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit45MethodAnnotationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheckTest.java index 4bd57da3b9..16d1ba9840 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit4AnnotationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheckTest.java index 679f7710b7..3e33680555 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5DefaultPackageClassAndMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheckTest.java index 3d4f7f05dc..4f4a9a7534 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnit5SilentlyIgnoreClassAndMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheckTest.java index e8c8f3af96..22f5eb7281 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/JUnitCompatibleAnnotationsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheckTest.java index d6b564e95c..cb0f29b179 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/JunitNestedAnnotationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/MockingAllMethodsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/MockingAllMethodsCheckTest.java index 8046798ad3..340f207318 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/MockingAllMethodsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/MockingAllMethodsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheckTest.java index 79cca9f5ff..1dc28ca45f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoAnnotatedObjectsShouldBeInitializedCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheckTest.java index bb5f643b9e..08ece43b75 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoArgumentMatchersUsedOnAllParametersCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheckTest.java index b228829e1a..78ec2b83e6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/MockitoEqSimplificationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/NoTestInTestClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/NoTestInTestClassCheckTest.java index a9b3f0535b..19b0885924 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/NoTestInTestClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/NoTestInTestClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheckTest.java index fa66ce400d..5f52f3413b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedCheckedExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheckTest.java index 3fd0e56d96..d756e61f2f 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/OneExpectedRuntimeExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/ParameterizedTestCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/ParameterizedTestCheckTest.java index dbc9f8b6b7..7b6f162742 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/ParameterizedTestCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/ParameterizedTestCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/RandomizedTestDataCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/RandomizedTestDataCheckTest.java index e6a9820d3d..04973654fe 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/RandomizedTestDataCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/RandomizedTestDataCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheckTest.java index d253312ba8..f559d3d3b5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/SpringAssertionsSimplificationCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheckTest.java index 07165558da..f971fb2d7b 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/TestAnnotationWithExpectedExceptionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/TestsStabilityCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/TestsStabilityCheckTest.java index de98aa693f..d64824d8e6 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/TestsStabilityCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/TestsStabilityCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheckTest.java index 4717ff37c9..ccf174c968 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/ThreadSleepInTestsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/tests/TooManyAssertionsCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/tests/TooManyAssertionsCheckTest.java index 0e15b0d21a..5e9e8e06ab 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/tests/TooManyAssertionsCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/tests/TooManyAssertionsCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedCollectionCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedCollectionCheckTest.java index cfbf1bcae3..e9720923ea 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedCollectionCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedCollectionCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLabelCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLabelCheckTest.java index 4cff0aaf23..566a256a1a 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLabelCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLabelCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLocalVariableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLocalVariableCheckTest.java index b774b3a05d..78d4b1e505 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLocalVariableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedLocalVariableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedMethodParameterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedMethodParameterCheckTest.java index 196c8b4cc6..eab2915d49 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedMethodParameterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedMethodParameterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateClassCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateClassCheckTest.java index cf5dba0ed3..48da0993e9 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateClassCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateClassCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheckTest.java index 5f1cb231d5..7c0a3a6893 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateFieldCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheckTest.java index 73123dc311..daf00f95b3 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedPrivateMethodCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedReturnedDataCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedReturnedDataCheckTest.java index b01556bef4..9ba8d9bac5 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedReturnedDataCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedReturnedDataCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedStringBuilderCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedStringBuilderCheckTest.java index dcaa330657..c694f1aaad 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedStringBuilderCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedStringBuilderCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTestRuleCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTestRuleCheckTest.java index 50e5a6ac4f..0b27e51b48 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTestRuleCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTestRuleCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedThrowableCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedThrowableCheckTest.java index 8c0ab7c8a5..dc1c73a2ef 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedThrowableCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedThrowableCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTypeParameterCheckTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTypeParameterCheckTest.java index c945b6912e..762161a127 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTypeParameterCheckTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/UnusedTypeParameterCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinderTest.java b/java-checks/src/test/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinderTest.java index bc48cc7b31..ed24c8f907 100644 --- a/java-checks/src/test/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinderTest.java +++ b/java-checks/src/test/java/org/sonar/java/checks/unused/utils/AnnotationFieldReferenceFinderTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/AnyRuleIssueFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/AnyRuleIssueFilterTest.java index 3a5a61f1ce..5bb2fc7caf 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/AnyRuleIssueFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/AnyRuleIssueFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/BaseTreeVisitorIssueFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/BaseTreeVisitorIssueFilterTest.java index 084231eaff..9c7e8a4cfb 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/BaseTreeVisitorIssueFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/BaseTreeVisitorIssueFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/EclipseI18NFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/EclipseI18NFilterTest.java index 0378f74530..c472f1bbe8 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/EclipseI18NFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/EclipseI18NFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/FilterVerifier.java b/java-checks/src/test/java/org/sonar/java/filters/FilterVerifier.java index c316c2b40c..a0c0bcfe2d 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/FilterVerifier.java +++ b/java-checks/src/test/java/org/sonar/java/filters/FilterVerifier.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/FilterVerifierTest.java b/java-checks/src/test/java/org/sonar/java/filters/FilterVerifierTest.java index e463205a21..cc24bb2fc7 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/FilterVerifierTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/FilterVerifierTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/GeneratedCodeFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/GeneratedCodeFilterTest.java index 0947aca17d..7d3a15b02c 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/GeneratedCodeFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/GeneratedCodeFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/GoogleAutoFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/GoogleAutoFilterTest.java index 8efed3345f..9430e64faa 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/GoogleAutoFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/GoogleAutoFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/LombokFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/LombokFilterTest.java index 62b8b857a5..d319bc6f4d 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/LombokFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/LombokFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/PostAnalysisIssueFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/PostAnalysisIssueFilterTest.java index 1a0df21bb8..ac98626380 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/PostAnalysisIssueFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/PostAnalysisIssueFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/SpringFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/SpringFilterTest.java index 105d8fe5c0..6a934bfb47 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/SpringFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/SpringFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-checks/src/test/java/org/sonar/java/filters/SuppressWarningFilterTest.java b/java-checks/src/test/java/org/sonar/java/filters/SuppressWarningFilterTest.java index f4aaf94cd0..8bc3fa0a89 100644 --- a/java-checks/src/test/java/org/sonar/java/filters/SuppressWarningFilterTest.java +++ b/java-checks/src/test/java/org/sonar/java/filters/SuppressWarningFilterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/eclipse/jdt/core/dom/ASTUtils.java b/java-frontend/src/main/java/org/eclipse/jdt/core/dom/ASTUtils.java index 6eb1142777..eb913ea3e1 100644 --- a/java-frontend/src/main/java/org/eclipse/jdt/core/dom/ASTUtils.java +++ b/java-frontend/src/main/java/org/eclipse/jdt/core/dom/ASTUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/eclipse/jdt/core/dom/package-info.java b/java-frontend/src/main/java/org/eclipse/jdt/core/dom/package-info.java index 4a71109ac4..83236a2c8a 100644 --- a/java-frontend/src/main/java/org/eclipse/jdt/core/dom/package-info.java +++ b/java-frontend/src/main/java/org/eclipse/jdt/core/dom/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/AnalysisException.java b/java-frontend/src/main/java/org/sonar/java/AnalysisException.java index 830c58d80c..ca97f29d45 100644 --- a/java-frontend/src/main/java/org/sonar/java/AnalysisException.java +++ b/java-frontend/src/main/java/org/sonar/java/AnalysisException.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/AnalysisProgress.java b/java-frontend/src/main/java/org/sonar/java/AnalysisProgress.java index 02f0e00ceb..473ee842df 100644 --- a/java-frontend/src/main/java/org/sonar/java/AnalysisProgress.java +++ b/java-frontend/src/main/java/org/sonar/java/AnalysisProgress.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/AnalysisWarningsWrapper.java b/java-frontend/src/main/java/org/sonar/java/AnalysisWarningsWrapper.java index 22a103224e..55992f5781 100644 --- a/java-frontend/src/main/java/org/sonar/java/AnalysisWarningsWrapper.java +++ b/java-frontend/src/main/java/org/sonar/java/AnalysisWarningsWrapper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/BatchGenerator.java b/java-frontend/src/main/java/org/sonar/java/BatchGenerator.java index 1ee037e3ca..fe1d12e8af 100644 --- a/java-frontend/src/main/java/org/sonar/java/BatchGenerator.java +++ b/java-frontend/src/main/java/org/sonar/java/BatchGenerator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/CheckFailureException.java b/java-frontend/src/main/java/org/sonar/java/CheckFailureException.java index d7dbc2e9fc..4b95efdd01 100644 --- a/java-frontend/src/main/java/org/sonar/java/CheckFailureException.java +++ b/java-frontend/src/main/java/org/sonar/java/CheckFailureException.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/DefaultJavaResourceLocator.java b/java-frontend/src/main/java/org/sonar/java/DefaultJavaResourceLocator.java index d7de773891..feb9c67a81 100644 --- a/java-frontend/src/main/java/org/sonar/java/DefaultJavaResourceLocator.java +++ b/java-frontend/src/main/java/org/sonar/java/DefaultJavaResourceLocator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ExceptionHandler.java b/java-frontend/src/main/java/org/sonar/java/ExceptionHandler.java index fc5f1d77a5..2e83378984 100644 --- a/java-frontend/src/main/java/org/sonar/java/ExceptionHandler.java +++ b/java-frontend/src/main/java/org/sonar/java/ExceptionHandler.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ExecutionTimeReport.java b/java-frontend/src/main/java/org/sonar/java/ExecutionTimeReport.java index 5dc687e627..14a5d509c4 100644 --- a/java-frontend/src/main/java/org/sonar/java/ExecutionTimeReport.java +++ b/java-frontend/src/main/java/org/sonar/java/ExecutionTimeReport.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/IllegalRuleParameterException.java b/java-frontend/src/main/java/org/sonar/java/IllegalRuleParameterException.java index fdf0d722b6..79ed2bca45 100644 --- a/java-frontend/src/main/java/org/sonar/java/IllegalRuleParameterException.java +++ b/java-frontend/src/main/java/org/sonar/java/IllegalRuleParameterException.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/JavaConstants.java b/java-frontend/src/main/java/org/sonar/java/JavaConstants.java index c86d5a0320..4dc0284d96 100644 --- a/java-frontend/src/main/java/org/sonar/java/JavaConstants.java +++ b/java-frontend/src/main/java/org/sonar/java/JavaConstants.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/JavaFilesCache.java b/java-frontend/src/main/java/org/sonar/java/JavaFilesCache.java index 6bb21f29ae..7d24c718c1 100644 --- a/java-frontend/src/main/java/org/sonar/java/JavaFilesCache.java +++ b/java-frontend/src/main/java/org/sonar/java/JavaFilesCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/JavaFrontend.java b/java-frontend/src/main/java/org/sonar/java/JavaFrontend.java index 8b7e22f902..a2443da50d 100644 --- a/java-frontend/src/main/java/org/sonar/java/JavaFrontend.java +++ b/java-frontend/src/main/java/org/sonar/java/JavaFrontend.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/Measurer.java b/java-frontend/src/main/java/org/sonar/java/Measurer.java index 0125e9e193..69bdf1a687 100644 --- a/java-frontend/src/main/java/org/sonar/java/Measurer.java +++ b/java-frontend/src/main/java/org/sonar/java/Measurer.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/Preconditions.java b/java-frontend/src/main/java/org/sonar/java/Preconditions.java index 5fd7777384..2a0e7da12d 100644 --- a/java-frontend/src/main/java/org/sonar/java/Preconditions.java +++ b/java-frontend/src/main/java/org/sonar/java/Preconditions.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ProgressMonitor.java b/java-frontend/src/main/java/org/sonar/java/ProgressMonitor.java index ed62522a6f..b256ac3779 100644 --- a/java-frontend/src/main/java/org/sonar/java/ProgressMonitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ProgressMonitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/SonarComponents.java b/java-frontend/src/main/java/org/sonar/java/SonarComponents.java index 86d564a8b0..7fbb50b696 100644 --- a/java-frontend/src/main/java/org/sonar/java/SonarComponents.java +++ b/java-frontend/src/main/java/org/sonar/java/SonarComponents.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/annotations/Beta.java b/java-frontend/src/main/java/org/sonar/java/annotations/Beta.java index eab38645b0..fe8a8c94c1 100644 --- a/java-frontend/src/main/java/org/sonar/java/annotations/Beta.java +++ b/java-frontend/src/main/java/org/sonar/java/annotations/Beta.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/annotations/VisibleForTesting.java b/java-frontend/src/main/java/org/sonar/java/annotations/VisibleForTesting.java index d5078ad3b3..d009a12a31 100644 --- a/java-frontend/src/main/java/org/sonar/java/annotations/VisibleForTesting.java +++ b/java-frontend/src/main/java/org/sonar/java/annotations/VisibleForTesting.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/annotations/package-info.java b/java-frontend/src/main/java/org/sonar/java/annotations/package-info.java index 17725c6883..b31ea0150e 100644 --- a/java-frontend/src/main/java/org/sonar/java/annotations/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/annotations/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/JavaAstScanner.java b/java-frontend/src/main/java/org/sonar/java/ast/JavaAstScanner.java index b655d9ad9e..e6d6c17e21 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/JavaAstScanner.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/JavaAstScanner.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/api/JavaKeyword.java b/java-frontend/src/main/java/org/sonar/java/ast/api/JavaKeyword.java index 5db6f90205..825dea3cbd 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/api/JavaKeyword.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/api/JavaKeyword.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/api/JavaPunctuator.java b/java-frontend/src/main/java/org/sonar/java/ast/api/JavaPunctuator.java index 95a9eeacc0..c436fdadd1 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/api/JavaPunctuator.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/api/JavaPunctuator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/api/JavaRestrictedKeyword.java b/java-frontend/src/main/java/org/sonar/java/ast/api/JavaRestrictedKeyword.java index 5e36b6c9c2..54addd44d6 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/api/JavaRestrictedKeyword.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/api/JavaRestrictedKeyword.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/api/package-info.java b/java-frontend/src/main/java/org/sonar/java/ast/api/package-info.java index cf76d1d20a..828a172dc0 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/api/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/api/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/package-info.java b/java-frontend/src/main/java/org/sonar/java/ast/package-info.java index f3fb22a1af..13408da340 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/ArgumentListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/ArgumentListTreeImpl.java index 421722ecc8..e1798ccc6d 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/ArgumentListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/ArgumentListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/FormalParametersListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/FormalParametersListTreeImpl.java index 0cefa72f97..a71bb947a7 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/FormalParametersListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/FormalParametersListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/InitializerListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/InitializerListTreeImpl.java index 23433abc0f..18792a7d6c 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/InitializerListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/InitializerListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/ListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/ListTreeImpl.java index eebea9a8f3..c2d96963b7 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/ListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/ListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameListTreeImpl.java index 5e4c0dd5da..b0a6ae35a1 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameTreeImpl.java index c8dec0a840..5d2b589233 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/ModuleNameTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/QualifiedIdentifierListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/QualifiedIdentifierListTreeImpl.java index 54c414f05b..c7e979cfb9 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/QualifiedIdentifierListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/QualifiedIdentifierListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/ResourceListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/ResourceListTreeImpl.java index d91eae555e..03c44b091b 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/ResourceListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/ResourceListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/StatementListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/StatementListTreeImpl.java index bb0c005270..a110225a6b 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/StatementListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/StatementListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/TypeParameterListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/TypeParameterListTreeImpl.java index 1f08961850..58bec1bcfa 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/TypeParameterListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/TypeParameterListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/parser/package-info.java b/java-frontend/src/main/java/org/sonar/java/ast/parser/package-info.java index 2acd3c2dd5..7757f48ec0 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/parser/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/parser/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/AccessorsUtils.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/AccessorsUtils.java index e5935f1c73..78fba70aab 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/AccessorsUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/AccessorsUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/CognitiveComplexityVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/CognitiveComplexityVisitor.java index 2ed8f7c0a0..982bbad85a 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/CognitiveComplexityVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/CognitiveComplexityVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/CommentLinesVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/CommentLinesVisitor.java index 9078c81c9d..efb4cd3717 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/CommentLinesVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/CommentLinesVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/ComplexityVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/ComplexityVisitor.java index 613c94a2c4..1ce00a4202 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/ComplexityVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/ComplexityVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/FileLinesVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/FileLinesVisitor.java index 091df39d4e..e80ddb0714 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/FileLinesVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/FileLinesVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/LinesOfCodeVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/LinesOfCodeVisitor.java index 9dcae1c835..9a5bd33a8b 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/LinesOfCodeVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/LinesOfCodeVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitor.java index 0cd0288168..14aeddc242 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitor.java index 128b9b8fac..dc83359c09 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/PublicApiChecker.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/PublicApiChecker.java index 302d4a1c83..74f04705c1 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/PublicApiChecker.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/PublicApiChecker.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitor.java index daf9c09fc6..a388e44048 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/StatementVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/StatementVisitor.java index 97f6badd04..d1e9110356 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/StatementVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/StatementVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/SubscriptionVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/SubscriptionVisitor.java index d51b76e0d7..9bdb1e7b58 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/SubscriptionVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/SubscriptionVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitor.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitor.java index 6235c110c8..0a674afe1a 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitor.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/ast/visitors/package-info.java b/java-frontend/src/main/java/org/sonar/java/ast/visitors/package-info.java index 5b8a412912..48b2f25c09 100644 --- a/java-frontend/src/main/java/org/sonar/java/ast/visitors/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/ast/visitors/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/CacheContextImpl.java b/java-frontend/src/main/java/org/sonar/java/caching/CacheContextImpl.java index e543ea6835..ee85d0938a 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/CacheContextImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/CacheContextImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/CacheReadException.java b/java-frontend/src/main/java/org/sonar/java/caching/CacheReadException.java index ab730b78af..82758d4d8d 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/CacheReadException.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/CacheReadException.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/ContentHashCache.java b/java-frontend/src/main/java/org/sonar/java/caching/ContentHashCache.java index 97915723d5..0066335fee 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/ContentHashCache.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/ContentHashCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/DummyCache.java b/java-frontend/src/main/java/org/sonar/java/caching/DummyCache.java index b714958d8a..d224fb5a64 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/DummyCache.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/DummyCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/FileHashingUtils.java b/java-frontend/src/main/java/org/sonar/java/caching/FileHashingUtils.java index 65291edb45..b700b0ed86 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/FileHashingUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/FileHashingUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/JavaReadCacheImpl.java b/java-frontend/src/main/java/org/sonar/java/caching/JavaReadCacheImpl.java index 54865c5e68..91ede87a64 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/JavaReadCacheImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/JavaReadCacheImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/JavaWriteCacheImpl.java b/java-frontend/src/main/java/org/sonar/java/caching/JavaWriteCacheImpl.java index 70d329c12d..5e5c7598b8 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/JavaWriteCacheImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/JavaWriteCacheImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/caching/package-info.java b/java-frontend/src/main/java/org/sonar/java/caching/package-info.java index c3f998366b..531a43b2bb 100644 --- a/java-frontend/src/main/java/org/sonar/java/caching/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/caching/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/cfg/CFG.java b/java-frontend/src/main/java/org/sonar/java/cfg/CFG.java index ad81ea8bc3..0c6428118d 100644 --- a/java-frontend/src/main/java/org/sonar/java/cfg/CFG.java +++ b/java-frontend/src/main/java/org/sonar/java/cfg/CFG.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/cfg/CFGLoop.java b/java-frontend/src/main/java/org/sonar/java/cfg/CFGLoop.java index c2f1d625b6..591c207ea5 100644 --- a/java-frontend/src/main/java/org/sonar/java/cfg/CFGLoop.java +++ b/java-frontend/src/main/java/org/sonar/java/cfg/CFGLoop.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/cfg/LiveVariables.java b/java-frontend/src/main/java/org/sonar/java/cfg/LiveVariables.java index 418df0ebe6..c0c7745d44 100644 --- a/java-frontend/src/main/java/org/sonar/java/cfg/LiveVariables.java +++ b/java-frontend/src/main/java/org/sonar/java/cfg/LiveVariables.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/cfg/VariableReadExtractor.java b/java-frontend/src/main/java/org/sonar/java/cfg/VariableReadExtractor.java index 09573cd0d6..ac98cf7ba3 100644 --- a/java-frontend/src/main/java/org/sonar/java/cfg/VariableReadExtractor.java +++ b/java-frontend/src/main/java/org/sonar/java/cfg/VariableReadExtractor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/cfg/package-info.java b/java-frontend/src/main/java/org/sonar/java/cfg/package-info.java index b1dfe9c719..215f00df0c 100644 --- a/java-frontend/src/main/java/org/sonar/java/cfg/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/cfg/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/AbstractClasspath.java b/java-frontend/src/main/java/org/sonar/java/classpath/AbstractClasspath.java index adada74211..d89221ca42 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/AbstractClasspath.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/AbstractClasspath.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMain.java b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMain.java index 58b7ba591c..9f89d87ec4 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMain.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMain.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMainForSonarLint.java b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMainForSonarLint.java index 0940720853..c5fc5a57fc 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMainForSonarLint.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForMainForSonarLint.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForTest.java b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForTest.java index 3712509cfc..67a8752cae 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForTest.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathForTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathProperties.java b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathProperties.java index 3c6ef49e6d..902b3b88e8 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathProperties.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/ClasspathProperties.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/DependencyVersionInference.java b/java-frontend/src/main/java/org/sonar/java/classpath/DependencyVersionInference.java index 36c8155106..3c91e737d7 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/DependencyVersionInference.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/DependencyVersionInference.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/JavaSdkUtil.java b/java-frontend/src/main/java/org/sonar/java/classpath/JavaSdkUtil.java index c717efdbdf..0abed4baf1 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/JavaSdkUtil.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/JavaSdkUtil.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/VersionImpl.java b/java-frontend/src/main/java/org/sonar/java/classpath/VersionImpl.java index baf7020ef5..e5eca79a15 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/VersionImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/VersionImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/classpath/package-info.java b/java-frontend/src/main/java/org/sonar/java/classpath/package-info.java index a1c5cd721d..6709ae2bde 100644 --- a/java-frontend/src/main/java/org/sonar/java/classpath/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/classpath/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/collections/CollectionUtils.java b/java-frontend/src/main/java/org/sonar/java/collections/CollectionUtils.java index 87d8e726ce..9e61b9bf8b 100644 --- a/java-frontend/src/main/java/org/sonar/java/collections/CollectionUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/collections/CollectionUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/collections/package-info.java b/java-frontend/src/main/java/org/sonar/java/collections/package-info.java index ce8261b5bb..d7b88fade3 100644 --- a/java-frontend/src/main/java/org/sonar/java/collections/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/collections/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/exceptions/ApiMismatchException.java b/java-frontend/src/main/java/org/sonar/java/exceptions/ApiMismatchException.java index 8e41fe3b83..304c6577ca 100644 --- a/java-frontend/src/main/java/org/sonar/java/exceptions/ApiMismatchException.java +++ b/java-frontend/src/main/java/org/sonar/java/exceptions/ApiMismatchException.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/exceptions/ThrowableUtils.java b/java-frontend/src/main/java/org/sonar/java/exceptions/ThrowableUtils.java index 32288ff6b4..be9236d369 100644 --- a/java-frontend/src/main/java/org/sonar/java/exceptions/ThrowableUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/exceptions/ThrowableUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/exceptions/package-info.java b/java-frontend/src/main/java/org/sonar/java/exceptions/package-info.java index e0b8380869..6b4afa5045 100644 --- a/java-frontend/src/main/java/org/sonar/java/exceptions/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/exceptions/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/filters/SonarJavaIssueFilter.java b/java-frontend/src/main/java/org/sonar/java/filters/SonarJavaIssueFilter.java index 55815b3af8..02ab8f2d51 100644 --- a/java-frontend/src/main/java/org/sonar/java/filters/SonarJavaIssueFilter.java +++ b/java-frontend/src/main/java/org/sonar/java/filters/SonarJavaIssueFilter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/filters/package-info.java b/java-frontend/src/main/java/org/sonar/java/filters/package-info.java index 27c1257c28..068d25ca99 100644 --- a/java-frontend/src/main/java/org/sonar/java/filters/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/filters/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatcherFactory.java b/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatcherFactory.java index 2e3b87ae99..83a664f8bd 100644 --- a/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatcherFactory.java +++ b/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatcherFactory.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersBuilder.java b/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersBuilder.java index 9ce3ef3deb..5a023ac794 100644 --- a/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersBuilder.java +++ b/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersBuilder.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersList.java b/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersList.java index 1eb3b66303..433d676e99 100644 --- a/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersList.java +++ b/java-frontend/src/main/java/org/sonar/java/matcher/MethodMatchersList.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/matcher/NoneMethodMatchers.java b/java-frontend/src/main/java/org/sonar/java/matcher/NoneMethodMatchers.java index c44f86bed4..67b262ab1e 100644 --- a/java-frontend/src/main/java/org/sonar/java/matcher/NoneMethodMatchers.java +++ b/java-frontend/src/main/java/org/sonar/java/matcher/NoneMethodMatchers.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/matcher/TreeMatcher.java b/java-frontend/src/main/java/org/sonar/java/matcher/TreeMatcher.java index 0c5f68b2f6..c30818224d 100644 --- a/java-frontend/src/main/java/org/sonar/java/matcher/TreeMatcher.java +++ b/java-frontend/src/main/java/org/sonar/java/matcher/TreeMatcher.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/matcher/package-info.java b/java-frontend/src/main/java/org/sonar/java/matcher/package-info.java index 0ec73e4d50..5fa8a21290 100644 --- a/java-frontend/src/main/java/org/sonar/java/matcher/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/matcher/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/metrics/MetricsComputer.java b/java-frontend/src/main/java/org/sonar/java/metrics/MetricsComputer.java index 3ee0167c13..8ca2794718 100644 --- a/java-frontend/src/main/java/org/sonar/java/metrics/MetricsComputer.java +++ b/java-frontend/src/main/java/org/sonar/java/metrics/MetricsComputer.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/metrics/MetricsScannerContext.java b/java-frontend/src/main/java/org/sonar/java/metrics/MetricsScannerContext.java index c7da8ea015..307f372877 100644 --- a/java-frontend/src/main/java/org/sonar/java/metrics/MetricsScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/java/metrics/MetricsScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/metrics/package-info.java b/java-frontend/src/main/java/org/sonar/java/metrics/package-info.java index 0946f84da5..460d35d902 100644 --- a/java-frontend/src/main/java/org/sonar/java/metrics/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/metrics/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/AbstractTypedTree.java b/java-frontend/src/main/java/org/sonar/java/model/AbstractTypedTree.java index 8d1457656a..3cbac510da 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/AbstractTypedTree.java +++ b/java-frontend/src/main/java/org/sonar/java/model/AbstractTypedTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/AnnotationValueImpl.java b/java-frontend/src/main/java/org/sonar/java/model/AnnotationValueImpl.java index c7abb071dd..292a98f17e 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/AnnotationValueImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/AnnotationValueImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/ArrayDimensionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/ArrayDimensionTreeImpl.java index 40772b5831..14db982b60 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/ArrayDimensionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/ArrayDimensionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/DefaultInputFileScannerContext.java b/java-frontend/src/main/java/org/sonar/java/model/DefaultInputFileScannerContext.java index f31f274e2d..b6ebf5f0a8 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/DefaultInputFileScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/java/model/DefaultInputFileScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/DefaultJavaFileScannerContext.java b/java-frontend/src/main/java/org/sonar/java/model/DefaultJavaFileScannerContext.java index 7cd9aadb77..34ee11fffc 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/DefaultJavaFileScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/java/model/DefaultJavaFileScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/DefaultModuleScannerContext.java b/java-frontend/src/main/java/org/sonar/java/model/DefaultModuleScannerContext.java index 19a7607acf..8ad5ec5ed9 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/DefaultModuleScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/java/model/DefaultModuleScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/ExpressionUtils.java b/java-frontend/src/main/java/org/sonar/java/model/ExpressionUtils.java index fafd5819fc..378286074b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/ExpressionUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/model/ExpressionUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/GeneratedFile.java b/java-frontend/src/main/java/org/sonar/java/model/GeneratedFile.java index 8e8a2c14e0..1095583892 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/GeneratedFile.java +++ b/java-frontend/src/main/java/org/sonar/java/model/GeneratedFile.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/InputFileUtils.java b/java-frontend/src/main/java/org/sonar/java/model/InputFileUtils.java index a2251a7c06..cb33bbdce6 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/InputFileUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/model/InputFileUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxToken.java b/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxToken.java index 137c2ece4e..e76542ef3b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxToken.java +++ b/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxToken.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxTrivia.java b/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxTrivia.java index 20936bd750..850d1767b8 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxTrivia.java +++ b/java-frontend/src/main/java/org/sonar/java/model/InternalSyntaxTrivia.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JInitializerBlockSymbol.java b/java-frontend/src/main/java/org/sonar/java/model/JInitializerBlockSymbol.java index b2ac400503..b57044dd11 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JInitializerBlockSymbol.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JInitializerBlockSymbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JLabelSymbol.java b/java-frontend/src/main/java/org/sonar/java/model/JLabelSymbol.java index cac4538544..c6d7452245 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JLabelSymbol.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JLabelSymbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JMethodSymbol.java b/java-frontend/src/main/java/org/sonar/java/model/JMethodSymbol.java index 6f665d82cc..4a8dc936a1 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JMethodSymbol.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JMethodSymbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JPackageSymbol.java b/java-frontend/src/main/java/org/sonar/java/model/JPackageSymbol.java index c4a5e90a49..fc1bd57a9b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JPackageSymbol.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JPackageSymbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JParser.java b/java-frontend/src/main/java/org/sonar/java/model/JParser.java index 777d928b86..a92e37bdd0 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JParser.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JParser.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JParserConfig.java b/java-frontend/src/main/java/org/sonar/java/model/JParserConfig.java index d46e0dc1c5..827907dc5f 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JParserConfig.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JParserConfig.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JProblem.java b/java-frontend/src/main/java/org/sonar/java/model/JProblem.java index e5353ba59d..6844df7bf8 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JProblem.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JProblem.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JSema.java b/java-frontend/src/main/java/org/sonar/java/model/JSema.java index 6a2f1ffd52..ba9b75b7ed 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JSema.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JSema.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JSymbol.java b/java-frontend/src/main/java/org/sonar/java/model/JSymbol.java index 29314f722f..7f217c539a 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JSymbol.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JSymbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadata.java b/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadata.java index dec928e947..e4f09a6d12 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadata.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadata.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadataNullabilityHelper.java b/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadataNullabilityHelper.java index 05d6af67a6..c72280595b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadataNullabilityHelper.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JSymbolMetadataNullabilityHelper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JType.java b/java-frontend/src/main/java/org/sonar/java/model/JType.java index 18e8cf72ab..d080dacd4c 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JType.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JType.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JTypeSymbol.java b/java-frontend/src/main/java/org/sonar/java/model/JTypeSymbol.java index 4d9989e389..aef022d66b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JTypeSymbol.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JTypeSymbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JUtils.java b/java-frontend/src/main/java/org/sonar/java/model/JUtils.java index b7a3b7c7f3..2950d3133a 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JVariableSymbol.java b/java-frontend/src/main/java/org/sonar/java/model/JVariableSymbol.java index 0f3fdc3b7f..7582b67021 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JVariableSymbol.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JVariableSymbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JWarning.java b/java-frontend/src/main/java/org/sonar/java/model/JWarning.java index a5f7e3fad1..39721921ed 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JWarning.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JWarning.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JavaTree.java b/java-frontend/src/main/java/org/sonar/java/model/JavaTree.java index 895bc18860..e06c2a3c90 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JavaTree.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JavaTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/JavaVersionImpl.java b/java-frontend/src/main/java/org/sonar/java/model/JavaVersionImpl.java index 61b4dd478d..5cd81be5cf 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/JavaVersionImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/JavaVersionImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/KeywordSuper.java b/java-frontend/src/main/java/org/sonar/java/model/KeywordSuper.java index ef8d69b2d2..38285287f7 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/KeywordSuper.java +++ b/java-frontend/src/main/java/org/sonar/java/model/KeywordSuper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/KeywordThis.java b/java-frontend/src/main/java/org/sonar/java/model/KeywordThis.java index 40ae9769d3..297ef53e5e 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/KeywordThis.java +++ b/java-frontend/src/main/java/org/sonar/java/model/KeywordThis.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/LineColumnConverter.java b/java-frontend/src/main/java/org/sonar/java/model/LineColumnConverter.java index c90f538e4e..9b85b39f77 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/LineColumnConverter.java +++ b/java-frontend/src/main/java/org/sonar/java/model/LineColumnConverter.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/LineUtils.java b/java-frontend/src/main/java/org/sonar/java/model/LineUtils.java index 0734c54099..624a7028de 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/LineUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/model/LineUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/LiteralUtils.java b/java-frontend/src/main/java/org/sonar/java/model/LiteralUtils.java index fb4e981eb9..167f31e2ac 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/LiteralUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/model/LiteralUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/ModifiersUtils.java b/java-frontend/src/main/java/org/sonar/java/model/ModifiersUtils.java index 340c7477c2..e59230419b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/ModifiersUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/model/ModifiersUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/PackageUtils.java b/java-frontend/src/main/java/org/sonar/java/model/PackageUtils.java index e648114827..07bf61c550 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/PackageUtils.java +++ b/java-frontend/src/main/java/org/sonar/java/model/PackageUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/SmapFile.java b/java-frontend/src/main/java/org/sonar/java/model/SmapFile.java index 9027c92c32..b0181480a4 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/SmapFile.java +++ b/java-frontend/src/main/java/org/sonar/java/model/SmapFile.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/Symbols.java b/java-frontend/src/main/java/org/sonar/java/model/Symbols.java index 7c89cf26b5..cf31418a0a 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/Symbols.java +++ b/java-frontend/src/main/java/org/sonar/java/model/Symbols.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/SyntacticEquivalence.java b/java-frontend/src/main/java/org/sonar/java/model/SyntacticEquivalence.java index d57d56768d..7dfd86587a 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/SyntacticEquivalence.java +++ b/java-frontend/src/main/java/org/sonar/java/model/SyntacticEquivalence.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/TypeParameterTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/TypeParameterTreeImpl.java index 94d2aee246..015cbc61d6 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/TypeParameterTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/TypeParameterTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/VisitorsBridge.java b/java-frontend/src/main/java/org/sonar/java/model/VisitorsBridge.java index 0878c9ae70..5238f44166 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/VisitorsBridge.java +++ b/java-frontend/src/main/java/org/sonar/java/model/VisitorsBridge.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/AnnotationTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/AnnotationTreeImpl.java index 7de5f59f65..1345033343 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/AnnotationTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/AnnotationTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/ClassTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/ClassTreeImpl.java index 62378fc365..465ea3e054 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/ClassTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/ClassTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/EnumConstantTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/EnumConstantTreeImpl.java index 10ed7730c4..dcce0e17f2 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/EnumConstantTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/EnumConstantTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImpl.java index 8e6052a792..3ac777a905 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/MethodTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/MethodTreeImpl.java index b4e2b02eb0..68a7a5497e 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/MethodTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/MethodTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifierKeywordTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifierKeywordTreeImpl.java index 2bca0980aa..ebfc9bc0cd 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifierKeywordTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifierKeywordTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifiersTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifiersTreeImpl.java index 5c376a40be..cb128e21f6 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifiersTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModifiersTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImpl.java index ac03f0bb5e..37c8ddae89 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDirectiveTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDirectiveTreeImpl.java index b172b8881b..fd34184938 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDirectiveTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/ModuleDirectiveTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/OpensDirectiveTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/OpensDirectiveTreeImpl.java index ccc097987a..0a0ab08e29 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/OpensDirectiveTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/OpensDirectiveTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImpl.java index 2427074312..edfbec23b3 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImpl.java index 2fbfd3e00c..7b622cea4e 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/SimpleModuleDirectiveTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/SimpleModuleDirectiveTreeImpl.java index e3c2657ea7..f756ca0de0 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/SimpleModuleDirectiveTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/SimpleModuleDirectiveTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/UsesDirectiveTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/UsesDirectiveTreeImpl.java index 086835db22..bda20924ac 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/UsesDirectiveTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/UsesDirectiveTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/VariableTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/VariableTreeImpl.java index 2025a12000..7120487cc6 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/VariableTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/VariableTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/declaration/package-info.java b/java-frontend/src/main/java/org/sonar/java/model/declaration/package-info.java index f40cb2bd65..e60b1cd48d 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/declaration/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/model/declaration/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/ArrayAccessExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/ArrayAccessExpressionTreeImpl.java index 16cd785553..8e0e1e0640 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/ArrayAccessExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/ArrayAccessExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/AssessableExpressionTree.java b/java-frontend/src/main/java/org/sonar/java/model/expression/AssessableExpressionTree.java index da57a9d7ea..160ab306ec 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/AssessableExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/AssessableExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/AssignmentExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/AssignmentExpressionTreeImpl.java index 369a7bbc00..31fd939dfb 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/AssignmentExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/AssignmentExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/BinaryExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/BinaryExpressionTreeImpl.java index 77dca9a09e..3609cf52e8 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/BinaryExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/BinaryExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/ConditionalExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/ConditionalExpressionTreeImpl.java index ae2bca284c..f760abf6a9 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/ConditionalExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/ConditionalExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/IdentifierTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/IdentifierTreeImpl.java index 1451946ace..35d968a0f0 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/IdentifierTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/IdentifierTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/InstanceOfTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/InstanceOfTreeImpl.java index 2ff8719308..8ac753f0c0 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/InstanceOfTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/InstanceOfTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPostfixUnaryExpression.java b/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPostfixUnaryExpression.java index 66106ba9c3..378ff43c50 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPostfixUnaryExpression.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPostfixUnaryExpression.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPrefixUnaryExpression.java b/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPrefixUnaryExpression.java index b99d41b0cc..8526eb47aa 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPrefixUnaryExpression.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/InternalPrefixUnaryExpression.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/InternalUnaryExpression.java b/java-frontend/src/main/java/org/sonar/java/model/expression/InternalUnaryExpression.java index fac1f64d5a..01c4818c4e 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/InternalUnaryExpression.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/InternalUnaryExpression.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/LambdaExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/LambdaExpressionTreeImpl.java index 5293226a31..6e9191bee0 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/LambdaExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/LambdaExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/LiteralTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/LiteralTreeImpl.java index 15a04b6cfa..1990415eea 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/LiteralTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/LiteralTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/MemberSelectExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/MemberSelectExpressionTreeImpl.java index f812b3cf69..3f37285d47 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/MemberSelectExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/MemberSelectExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/MethodInvocationTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/MethodInvocationTreeImpl.java index 912eea3c5f..d360944afd 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/MethodInvocationTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/MethodInvocationTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/MethodReferenceTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/MethodReferenceTreeImpl.java index 217feaf76e..47340ed988 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/MethodReferenceTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/MethodReferenceTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/NewArrayTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/NewArrayTreeImpl.java index 3356861aeb..c299833248 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/NewArrayTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/NewArrayTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/NewClassTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/NewClassTreeImpl.java index 0aa96bc468..f62f939e23 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/NewClassTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/NewClassTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/ParenthesizedTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/ParenthesizedTreeImpl.java index 2db7f5e51d..2a48cf0c81 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/ParenthesizedTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/ParenthesizedTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/TypeArgumentListTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/TypeArgumentListTreeImpl.java index 6d3627f2db..578cbb7a8b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/TypeArgumentListTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/TypeArgumentListTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/TypeCastExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/TypeCastExpressionTreeImpl.java index ee237cc8e7..2aea134cef 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/TypeCastExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/TypeCastExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/VarTypeTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/expression/VarTypeTreeImpl.java index 0b277e7e05..ba747cffbb 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/VarTypeTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/VarTypeTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/expression/package-info.java b/java-frontend/src/main/java/org/sonar/java/model/expression/package-info.java index 73f772320e..b71152ec7b 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/expression/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/model/expression/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/location/InternalPosition.java b/java-frontend/src/main/java/org/sonar/java/model/location/InternalPosition.java index 6b8e45dd28..0f4166d991 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/location/InternalPosition.java +++ b/java-frontend/src/main/java/org/sonar/java/model/location/InternalPosition.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/location/InternalRange.java b/java-frontend/src/main/java/org/sonar/java/model/location/InternalRange.java index 28c80ef4d4..d2d43e8505 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/location/InternalRange.java +++ b/java-frontend/src/main/java/org/sonar/java/model/location/InternalRange.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/location/package-info.java b/java-frontend/src/main/java/org/sonar/java/model/location/package-info.java index c62f87d24c..f7c7c38da4 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/location/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/model/location/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/package-info.java b/java-frontend/src/main/java/org/sonar/java/model/package-info.java index 58d2270aae..a8edeacc40 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/model/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/pattern/AbstractPatternTree.java b/java-frontend/src/main/java/org/sonar/java/model/pattern/AbstractPatternTree.java index 163be42f6c..6118f10f71 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/pattern/AbstractPatternTree.java +++ b/java-frontend/src/main/java/org/sonar/java/model/pattern/AbstractPatternTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/pattern/DefaultPatternTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/pattern/DefaultPatternTreeImpl.java index a614539b1c..defe1a0ae3 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/pattern/DefaultPatternTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/pattern/DefaultPatternTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/pattern/GuardedPatternTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/pattern/GuardedPatternTreeImpl.java index 462710be74..e06c667bc9 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/pattern/GuardedPatternTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/pattern/GuardedPatternTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/pattern/NullPatternTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/pattern/NullPatternTreeImpl.java index 53d005fdad..dc35368e1c 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/pattern/NullPatternTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/pattern/NullPatternTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/pattern/RecordPatternTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/pattern/RecordPatternTreeImpl.java index 2d3f71ef8e..2f2920440f 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/pattern/RecordPatternTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/pattern/RecordPatternTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/pattern/TypePatternTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/pattern/TypePatternTreeImpl.java index 0237224188..c1e730f9f4 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/pattern/TypePatternTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/pattern/TypePatternTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/pattern/package-info.java b/java-frontend/src/main/java/org/sonar/java/model/pattern/package-info.java index 02258cadfc..7944e87e4c 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/pattern/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/model/pattern/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/AssertStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/AssertStatementTreeImpl.java index 7acfa78244..f79a244ae0 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/AssertStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/AssertStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/BlockTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/BlockTreeImpl.java index f8167c1d52..cf8fbe0e81 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/BlockTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/BlockTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/BreakStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/BreakStatementTreeImpl.java index 16f457cbdb..2415bc75b5 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/BreakStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/BreakStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/CaseGroupTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/CaseGroupTreeImpl.java index ec1934dcf6..2c1767b511 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/CaseGroupTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/CaseGroupTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/CaseLabelTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/CaseLabelTreeImpl.java index 45daa10040..3aa5535be2 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/CaseLabelTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/CaseLabelTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/CatchTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/CatchTreeImpl.java index 08ed5616da..e2680575b4 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/CatchTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/CatchTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/ContinueStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/ContinueStatementTreeImpl.java index 71dcfe2932..af1a765a17 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/ContinueStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/ContinueStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/DoWhileStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/DoWhileStatementTreeImpl.java index ed94eaf2ce..6db51f18da 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/DoWhileStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/DoWhileStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/EmptyStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/EmptyStatementTreeImpl.java index 3b5724a9a9..ee2af1a677 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/EmptyStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/EmptyStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/ExpressionStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/ExpressionStatementTreeImpl.java index a9085f14e8..8664856c6e 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/ExpressionStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/ExpressionStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/ForEachStatementImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/ForEachStatementImpl.java index 5f6102fdaf..640912fe5f 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/ForEachStatementImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/ForEachStatementImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/ForStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/ForStatementTreeImpl.java index 1fb608eec6..32365ecf8d 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/ForStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/ForStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/IfStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/IfStatementTreeImpl.java index 4df5ff7eb6..75986e3dc9 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/IfStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/IfStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/LabeledStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/LabeledStatementTreeImpl.java index b7e7aa561b..b8da21bab4 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/LabeledStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/LabeledStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/ReturnStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/ReturnStatementTreeImpl.java index e193c7be9c..9e8dfc59ae 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/ReturnStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/ReturnStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/StaticInitializerTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/StaticInitializerTreeImpl.java index bcbc859b25..8c24c72226 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/StaticInitializerTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/StaticInitializerTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchExpressionTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchExpressionTreeImpl.java index ef17835ea6..38e318a7a4 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchExpressionTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchExpressionTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchStatementTreeImpl.java index c54662f576..c48ffc3832 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchTreeImpl.java index 1f9ea37019..34a9f702c2 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/SwitchTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/SynchronizedStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/SynchronizedStatementTreeImpl.java index ef00b208fe..fe0050a32e 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/SynchronizedStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/SynchronizedStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/ThrowStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/ThrowStatementTreeImpl.java index 908a515a9a..68c20df3e2 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/ThrowStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/ThrowStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/TryStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/TryStatementTreeImpl.java index af8a538626..685863889f 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/TryStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/TryStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/WhileStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/WhileStatementTreeImpl.java index 7e504fa3cf..9ef93bf05f 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/WhileStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/WhileStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/YieldStatementTreeImpl.java b/java-frontend/src/main/java/org/sonar/java/model/statement/YieldStatementTreeImpl.java index 8d26c1b9e8..3853ca4d06 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/YieldStatementTreeImpl.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/YieldStatementTreeImpl.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/model/statement/package-info.java b/java-frontend/src/main/java/org/sonar/java/model/statement/package-info.java index 38c9adf048..96c8d79985 100644 --- a/java-frontend/src/main/java/org/sonar/java/model/statement/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/model/statement/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/package-info.java b/java-frontend/src/main/java/org/sonar/java/package-info.java index d024c6ae62..117623a8ab 100644 --- a/java-frontend/src/main/java/org/sonar/java/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/regex/JavaAnalyzerRegexSource.java b/java-frontend/src/main/java/org/sonar/java/regex/JavaAnalyzerRegexSource.java index 8263db02cb..b6cce52b83 100644 --- a/java-frontend/src/main/java/org/sonar/java/regex/JavaAnalyzerRegexSource.java +++ b/java-frontend/src/main/java/org/sonar/java/regex/JavaAnalyzerRegexSource.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/regex/RegexCache.java b/java-frontend/src/main/java/org/sonar/java/regex/RegexCache.java index c55b94afdc..53be3fbf02 100644 --- a/java-frontend/src/main/java/org/sonar/java/regex/RegexCache.java +++ b/java-frontend/src/main/java/org/sonar/java/regex/RegexCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/regex/RegexCheck.java b/java-frontend/src/main/java/org/sonar/java/regex/RegexCheck.java index f89749daf5..7360d57220 100644 --- a/java-frontend/src/main/java/org/sonar/java/regex/RegexCheck.java +++ b/java-frontend/src/main/java/org/sonar/java/regex/RegexCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/regex/RegexScannerContext.java b/java-frontend/src/main/java/org/sonar/java/regex/RegexScannerContext.java index b6835aff95..47518c1867 100644 --- a/java-frontend/src/main/java/org/sonar/java/regex/RegexScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/java/regex/RegexScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/regex/package-info.java b/java-frontend/src/main/java/org/sonar/java/regex/package-info.java index de94a9acf9..3bcf89257b 100644 --- a/java-frontend/src/main/java/org/sonar/java/regex/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/regex/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/AnalyzerMessage.java b/java-frontend/src/main/java/org/sonar/java/reporting/AnalyzerMessage.java index 64402efbec..a985cde8d8 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/AnalyzerMessage.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/AnalyzerMessage.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/FluentReporting.java b/java-frontend/src/main/java/org/sonar/java/reporting/FluentReporting.java index c57dccfd63..5116c9f9c0 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/FluentReporting.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/FluentReporting.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/InternalJavaIssueBuilder.java b/java-frontend/src/main/java/org/sonar/java/reporting/InternalJavaIssueBuilder.java index 8dc0ab9a8b..5dd4acef95 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/InternalJavaIssueBuilder.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/InternalJavaIssueBuilder.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssue.java b/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssue.java index 27d6c2f01c..ce58ba3fce 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssue.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssue.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssueBuilderExtended.java b/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssueBuilderExtended.java index acb6898b3d..089486c202 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssueBuilderExtended.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/JavaIssueBuilderExtended.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/JavaQuickFix.java b/java-frontend/src/main/java/org/sonar/java/reporting/JavaQuickFix.java index 6c3788bae8..be446c6f93 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/JavaQuickFix.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/JavaQuickFix.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/JavaTextEdit.java b/java-frontend/src/main/java/org/sonar/java/reporting/JavaTextEdit.java index 19e493a3a5..50884b0ed7 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/JavaTextEdit.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/JavaTextEdit.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/reporting/package-info.java b/java-frontend/src/main/java/org/sonar/java/reporting/package-info.java index 740c165225..52ce2ccd6c 100644 --- a/java-frontend/src/main/java/org/sonar/java/reporting/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/reporting/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/telemetry/AlphaNumericComparator.java b/java-frontend/src/main/java/org/sonar/java/telemetry/AlphaNumericComparator.java index a5ab476eb6..3ce27df8e1 100644 --- a/java-frontend/src/main/java/org/sonar/java/telemetry/AlphaNumericComparator.java +++ b/java-frontend/src/main/java/org/sonar/java/telemetry/AlphaNumericComparator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/telemetry/DefaultTelemetry.java b/java-frontend/src/main/java/org/sonar/java/telemetry/DefaultTelemetry.java index da9d6ae13d..4f59396626 100644 --- a/java-frontend/src/main/java/org/sonar/java/telemetry/DefaultTelemetry.java +++ b/java-frontend/src/main/java/org/sonar/java/telemetry/DefaultTelemetry.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/telemetry/NoOpTelemetry.java b/java-frontend/src/main/java/org/sonar/java/telemetry/NoOpTelemetry.java index 35b1871eef..c9fe716c8a 100644 --- a/java-frontend/src/main/java/org/sonar/java/telemetry/NoOpTelemetry.java +++ b/java-frontend/src/main/java/org/sonar/java/telemetry/NoOpTelemetry.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/telemetry/Telemetry.java b/java-frontend/src/main/java/org/sonar/java/telemetry/Telemetry.java index d744e148c5..66ef33d028 100644 --- a/java-frontend/src/main/java/org/sonar/java/telemetry/Telemetry.java +++ b/java-frontend/src/main/java/org/sonar/java/telemetry/Telemetry.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/telemetry/TelemetryKey.java b/java-frontend/src/main/java/org/sonar/java/telemetry/TelemetryKey.java index 7ad620af3f..3834ab3b54 100644 --- a/java-frontend/src/main/java/org/sonar/java/telemetry/TelemetryKey.java +++ b/java-frontend/src/main/java/org/sonar/java/telemetry/TelemetryKey.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/telemetry/package-info.java b/java-frontend/src/main/java/org/sonar/java/telemetry/package-info.java index 5b72cb7f43..d18dc58b67 100644 --- a/java-frontend/src/main/java/org/sonar/java/telemetry/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/telemetry/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/testing/JavaFileScannerContextForTests.java b/java-frontend/src/main/java/org/sonar/java/testing/JavaFileScannerContextForTests.java index 309e5db47b..d7651f0dfa 100644 --- a/java-frontend/src/main/java/org/sonar/java/testing/JavaFileScannerContextForTests.java +++ b/java-frontend/src/main/java/org/sonar/java/testing/JavaFileScannerContextForTests.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/testing/JavaIssueBuilderForTests.java b/java-frontend/src/main/java/org/sonar/java/testing/JavaIssueBuilderForTests.java index 67bed508c8..5af82a5356 100644 --- a/java-frontend/src/main/java/org/sonar/java/testing/JavaIssueBuilderForTests.java +++ b/java-frontend/src/main/java/org/sonar/java/testing/JavaIssueBuilderForTests.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/testing/VisitorsBridgeForTests.java b/java-frontend/src/main/java/org/sonar/java/testing/VisitorsBridgeForTests.java index ea63c5fa4d..f31130c8aa 100644 --- a/java-frontend/src/main/java/org/sonar/java/testing/VisitorsBridgeForTests.java +++ b/java-frontend/src/main/java/org/sonar/java/testing/VisitorsBridgeForTests.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/java/testing/package-info.java b/java-frontend/src/main/java/org/sonar/java/testing/package-info.java index 0dc7292578..9720e95b60 100644 --- a/java-frontend/src/main/java/org/sonar/java/testing/package-info.java +++ b/java-frontend/src/main/java/org/sonar/java/testing/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/CheckRegistrar.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/CheckRegistrar.java index e83cfc2b71..ce32c52762 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/CheckRegistrar.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/CheckRegistrar.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/DependencyVersionAware.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/DependencyVersionAware.java index e40d5a3cde..2b53ce01ee 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/DependencyVersionAware.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/DependencyVersionAware.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/InputFileScannerContext.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/InputFileScannerContext.java index ea14475402..8a42646388 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/InputFileScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/InputFileScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitor.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitor.java index c60d70d5dd..b76173feb7 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitor.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaCheck.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaCheck.java index 08f8382e77..fadd18e0ae 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaCheck.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaCheck.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScanner.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScanner.java index 90bf37af6e..0574bb0a3b 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScanner.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScanner.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScannerContext.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScannerContext.java index 998ae1b872..9c71436c5d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaFileScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaResourceLocator.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaResourceLocator.java index e98e4b0366..0540993355 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaResourceLocator.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaResourceLocator.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersion.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersion.java index bdc9cf1561..5a0c9e7799 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersion.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersion.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersionAwareVisitor.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersionAwareVisitor.java index ca5b03ec56..834390ba39 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersionAwareVisitor.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/JavaVersionAwareVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/JspCodeVisitor.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/JspCodeVisitor.java index c67d51f179..77dba4c4b6 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/JspCodeVisitor.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/JspCodeVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/ModuleScannerContext.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/ModuleScannerContext.java index 6abfd5702c..ffcf9f4fb4 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/ModuleScannerContext.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/ModuleScannerContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/ProfileRegistrar.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/ProfileRegistrar.java index 75e3488279..82b0b4ab45 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/ProfileRegistrar.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/ProfileRegistrar.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/SourceMap.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/SourceMap.java index 40e8d6cacf..d185c8854e 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/SourceMap.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/SourceMap.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/Version.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/Version.java index b54814192a..4cab06245c 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/Version.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/Version.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/CacheContext.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/CacheContext.java index d33e3df936..c6eab044e1 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/CacheContext.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/CacheContext.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaReadCache.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaReadCache.java index c02267bf63..1b9a94c649 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaReadCache.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaReadCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaWriteCache.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaWriteCache.java index 4197cde075..0f07f0f67f 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaWriteCache.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/JavaWriteCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/SonarLintCache.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/SonarLintCache.java index d67c44173f..bb5b8ff525 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/SonarLintCache.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/SonarLintCache.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/package-info.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/package-info.java index 5577922e6b..f11ad005a1 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/package-info.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/caching/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/ControlFlowGraph.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/ControlFlowGraph.java index 4655a9b4d4..748d16c4a2 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/ControlFlowGraph.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/ControlFlowGraph.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/package-info.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/package-info.java index e6edda077c..18a6636179 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/package-info.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/cfg/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/EndOfAnalysis.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/EndOfAnalysis.java index 17651f48e8..d93b3036c8 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/EndOfAnalysis.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/EndOfAnalysis.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/package-info.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/package-info.java index e997445b15..fba400780e 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/package-info.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/internal/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Position.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Position.java index ddb365d507..680b469e29 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Position.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Position.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Range.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Range.java index 9c18e357d1..db00f86764 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Range.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/location/Range.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/location/package-info.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/location/package-info.java index b1acdecbaf..ac5b1e382e 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/location/package-info.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/location/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/package-info.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/package-info.java index 618f2e7d77..c28c4a4947 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/package-info.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/MethodMatchers.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/MethodMatchers.java index dda58d6e5c..e7ea8424ad 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/MethodMatchers.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/MethodMatchers.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Sema.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Sema.java index a92e41b46b..dcc4ad74a1 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Sema.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Sema.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Symbol.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Symbol.java index 234f479351..6dc5a93336 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Symbol.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Symbol.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/SymbolMetadata.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/SymbolMetadata.java index a96bfc22ab..7c0ecf1691 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/SymbolMetadata.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/SymbolMetadata.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Type.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Type.java index 014200e911..2e45cf69a6 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Type.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/Type.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/package-info.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/package-info.java index 570b6bec26..770d8ac2fb 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/package-info.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/semantic/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AnnotationTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AnnotationTree.java index 2dc5d82d06..d0b4d5ecb0 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AnnotationTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AnnotationTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Arguments.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Arguments.java index d08559fe57..e1b30740d7 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Arguments.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Arguments.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayAccessExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayAccessExpressionTree.java index 3cc18f7c85..2b7aa076e1 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayAccessExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayAccessExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayDimensionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayDimensionTree.java index 57b54e59f0..11c48bdd4b 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayDimensionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayDimensionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayTypeTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayTypeTree.java index c9c2362304..a5f454acb7 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayTypeTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ArrayTypeTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssertStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssertStatementTree.java index f3999c4be3..205c58348d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssertStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssertStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssignmentExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssignmentExpressionTree.java index cfba2a4870..a28243fea2 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssignmentExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/AssignmentExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BaseTreeVisitor.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BaseTreeVisitor.java index 09391c23b6..0240ec1816 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BaseTreeVisitor.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BaseTreeVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BinaryExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BinaryExpressionTree.java index 0667789b5f..014f6b5bef 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BinaryExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BinaryExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BlockTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BlockTree.java index d6f052e703..2a128c82e7 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BlockTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BlockTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BreakStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BreakStatementTree.java index 4af1715f65..cf0e3ae828 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BreakStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/BreakStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseGroupTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseGroupTree.java index 9bff1e400c..7f1bd995a5 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseGroupTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseGroupTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseLabelTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseLabelTree.java index c7eed59836..dcda1cbb46 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseLabelTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CaseLabelTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CatchTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CatchTree.java index 12dd1d7d28..0a9815c95a 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CatchTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CatchTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ClassTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ClassTree.java index a3b2bde3fd..1c29fb1649 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ClassTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ClassTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CompilationUnitTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CompilationUnitTree.java index 1c651d669f..3d00154f18 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CompilationUnitTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/CompilationUnitTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ConditionalExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ConditionalExpressionTree.java index d8685a7ee2..f6276ef42d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ConditionalExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ConditionalExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ContinueStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ContinueStatementTree.java index 08c722bc6c..e1c6af00ec 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ContinueStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ContinueStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DefaultPatternTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DefaultPatternTree.java index 51f1de70f7..78d5c12723 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DefaultPatternTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DefaultPatternTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DoWhileStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DoWhileStatementTree.java index bad41819e6..cff79030eb 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DoWhileStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/DoWhileStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EmptyStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EmptyStatementTree.java index addff96e29..5d2e8486f1 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EmptyStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EmptyStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EnumConstantTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EnumConstantTree.java index 89307ad872..dc7e5cda90 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EnumConstantTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/EnumConstantTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExportsDirectiveTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExportsDirectiveTree.java index 2cb9756e15..88deaf5f53 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExportsDirectiveTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExportsDirectiveTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionStatementTree.java index 2ddab58e7d..e3cabdaf28 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionTree.java index 2e167c905e..fe47cf372a 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForEachStatement.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForEachStatement.java index 1d9c9cd003..71c6d76238 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForEachStatement.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForEachStatement.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForStatementTree.java index 30bba743a8..041565ba97 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ForStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/GuardedPatternTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/GuardedPatternTree.java index 04c37cc119..736ea2d21a 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/GuardedPatternTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/GuardedPatternTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IdentifierTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IdentifierTree.java index 26bcdaddce..719933d84d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IdentifierTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IdentifierTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IfStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IfStatementTree.java index fedf8b10b5..c518363962 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IfStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/IfStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportClauseTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportClauseTree.java index 9d548ac4c7..1ad71b6869 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportClauseTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportClauseTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportTree.java index 3b511aaea1..91e40bdd06 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ImportTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InferedTypeTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InferedTypeTree.java index 661e92846b..6f225a10bf 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InferedTypeTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InferedTypeTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InstanceOfTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InstanceOfTree.java index b8e7c2988d..93a67dbb98 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InstanceOfTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/InstanceOfTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LabeledStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LabeledStatementTree.java index c19fae0fb6..b47368262b 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LabeledStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LabeledStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LambdaExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LambdaExpressionTree.java index 3c102c48d4..fd4caa0afe 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LambdaExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LambdaExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ListTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ListTree.java index b0aa95625e..c7dc63f6e0 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ListTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ListTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LiteralTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LiteralTree.java index 4b198ee6d3..7cc763c89d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LiteralTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/LiteralTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MemberSelectExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MemberSelectExpressionTree.java index 512b7b489e..52d7e50a67 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MemberSelectExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MemberSelectExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodInvocationTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodInvocationTree.java index 8d6f7a16e9..1eceb58b50 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodInvocationTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodInvocationTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodReferenceTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodReferenceTree.java index 6140e0e405..dce4a97ea5 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodReferenceTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodReferenceTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodTree.java index 77f93764ae..95b1dd6f58 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodsAreNonnullByDefault.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodsAreNonnullByDefault.java index 6b9bc45727..bea1159d9d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodsAreNonnullByDefault.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/MethodsAreNonnullByDefault.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Modifier.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Modifier.java index 00be7c966e..8e1e03adfd 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Modifier.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Modifier.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierKeywordTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierKeywordTree.java index 6c55883814..b68e91f6ad 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierKeywordTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierKeywordTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierTree.java index 27b9a88eb5..cdac59af30 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifierTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifiersTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifiersTree.java index 71b739731b..88d991ff4d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifiersTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModifiersTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDeclarationTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDeclarationTree.java index b148a4f7f6..b3b8e84c3b 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDeclarationTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDeclarationTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDirectiveTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDirectiveTree.java index ef38af2f0b..3ded2380ff 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDirectiveTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleDirectiveTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleNameTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleNameTree.java index 1fbb25a75a..690d7e4831 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleNameTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ModuleNameTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewArrayTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewArrayTree.java index 3bbda64e72..a769743630 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewArrayTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewArrayTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewClassTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewClassTree.java index 963bf8fbef..132d088ec4 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewClassTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NewClassTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NullPatternTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NullPatternTree.java index e3f5e909aa..c9cdd2f9f2 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NullPatternTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/NullPatternTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/OpensDirectiveTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/OpensDirectiveTree.java index ae3fd1f59c..11d02772f6 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/OpensDirectiveTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/OpensDirectiveTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PackageDeclarationTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PackageDeclarationTree.java index 35d6e0f83f..27f1b325a7 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PackageDeclarationTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PackageDeclarationTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParameterizedTypeTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParameterizedTypeTree.java index f1cd20ce1b..716de09dbc 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParameterizedTypeTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParameterizedTypeTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParenthesizedTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParenthesizedTree.java index 00e2ae44c9..1e5205508a 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParenthesizedTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ParenthesizedTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternInstanceOfTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternInstanceOfTree.java index 0470e8afab..12a1d747c0 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternInstanceOfTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternInstanceOfTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternTree.java index dccccd5fa4..3b159b6b8a 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PatternTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PrimitiveTypeTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PrimitiveTypeTree.java index 858f367961..690c7fb736 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PrimitiveTypeTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/PrimitiveTypeTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ProvidesDirectiveTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ProvidesDirectiveTree.java index d8d16bbcaa..edf4b6f008 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ProvidesDirectiveTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ProvidesDirectiveTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RecordPatternTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RecordPatternTree.java index 3f6c43cc19..9d11fb58b2 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RecordPatternTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RecordPatternTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RequiresDirectiveTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RequiresDirectiveTree.java index ff466ea6b4..66b5d0ac99 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RequiresDirectiveTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/RequiresDirectiveTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ReturnStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ReturnStatementTree.java index 0e54c91884..4077821661 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ReturnStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ReturnStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StatementTree.java index 1b7a646f5b..9e1fa54309 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StaticInitializerTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StaticInitializerTree.java index a11055dadc..1f069de8db 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StaticInitializerTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/StaticInitializerTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchExpressionTree.java index 16643df6bc..4ac539506e 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchStatementTree.java index f8c4ad14c2..d2a0f08952 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchTree.java index 33dea85d74..07ad9bbe26 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SwitchTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SynchronizedStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SynchronizedStatementTree.java index 82297c6930..b6f565d728 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SynchronizedStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SynchronizedStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxToken.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxToken.java index bec3e70b06..a4bc94c651 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxToken.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxToken.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxTrivia.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxTrivia.java index f896259041..a30c3be66d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxTrivia.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/SyntaxTrivia.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ThrowStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ThrowStatementTree.java index 93867de46a..a4606d27e2 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ThrowStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/ThrowStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Tree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Tree.java index e0b0dc3972..e94b18b988 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Tree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/Tree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TreeVisitor.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TreeVisitor.java index 2e603f6ae2..b4a21d7359 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TreeVisitor.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TreeVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TryStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TryStatementTree.java index 58ffd483db..2d2dd137ef 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TryStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TryStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeArguments.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeArguments.java index 6a9a7391ef..8702c8f45e 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeArguments.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeArguments.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeCastTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeCastTree.java index 375085536b..46a85a3a00 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeCastTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeCastTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameterTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameterTree.java index a535288a5a..84850299bb 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameterTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameterTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameters.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameters.java index b4ce00baae..df9b544675 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameters.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeParameters.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypePatternTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypePatternTree.java index 5b04c3e4b0..8df339c218 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypePatternTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypePatternTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeTree.java index 10a1e9b860..6b5f77100a 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/TypeTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnaryExpressionTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnaryExpressionTree.java index c2f7dd368d..04133b3494 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnaryExpressionTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnaryExpressionTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnionTypeTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnionTypeTree.java index d475dc1f3b..5af173dad0 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnionTypeTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UnionTypeTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UsesDirectiveTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UsesDirectiveTree.java index 0717864556..e68ce0b7b4 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UsesDirectiveTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/UsesDirectiveTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VarTypeTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VarTypeTree.java index 184afdf5eb..fe315cb3a4 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VarTypeTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VarTypeTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VariableTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VariableTree.java index cca10e6984..a81332721f 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VariableTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/VariableTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WhileStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WhileStatementTree.java index 55c06b04e1..e2d013f298 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WhileStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WhileStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WildcardTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WildcardTree.java index 5e60390e5e..0014100f6d 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WildcardTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/WildcardTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/YieldStatementTree.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/YieldStatementTree.java index 4a96e5e821..dbce93d3a4 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/YieldStatementTree.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/YieldStatementTree.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/package-info.java b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/package-info.java index ee53932a25..31105adeb7 100644 --- a/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/package-info.java +++ b/java-frontend/src/main/java/org/sonar/plugins/java/api/tree/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/files/model/expression/ClassWithConstants.java b/java-frontend/src/test/files/model/expression/ClassWithConstants.java index 6637f551cc..a5a2ce02ac 100644 --- a/java-frontend/src/test/files/model/expression/ClassWithConstants.java +++ b/java-frontend/src/test/files/model/expression/ClassWithConstants.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/eclipse/jdt/core/dom/ASTUtilsTest.java b/java-frontend/src/test/java/org/eclipse/jdt/core/dom/ASTUtilsTest.java index 8aa37ce464..8295fe1450 100644 --- a/java-frontend/src/test/java/org/eclipse/jdt/core/dom/ASTUtilsTest.java +++ b/java-frontend/src/test/java/org/eclipse/jdt/core/dom/ASTUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/AnalysisWarningsWrapperTest.java b/java-frontend/src/test/java/org/sonar/java/AnalysisWarningsWrapperTest.java index cb0e83e121..72412cce7f 100644 --- a/java-frontend/src/test/java/org/sonar/java/AnalysisWarningsWrapperTest.java +++ b/java-frontend/src/test/java/org/sonar/java/AnalysisWarningsWrapperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/BatchGeneratorTest.java b/java-frontend/src/test/java/org/sonar/java/BatchGeneratorTest.java index dd2589e428..03a7cd68ab 100644 --- a/java-frontend/src/test/java/org/sonar/java/BatchGeneratorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/BatchGeneratorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/CommonsCollectionsTest.java b/java-frontend/src/test/java/org/sonar/java/CommonsCollectionsTest.java index fbdf483ac1..df74c2a8af 100644 --- a/java-frontend/src/test/java/org/sonar/java/CommonsCollectionsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/CommonsCollectionsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/DefaultJavaResourceLocatorTest.java b/java-frontend/src/test/java/org/sonar/java/DefaultJavaResourceLocatorTest.java index f3b39cd198..12536e1421 100644 --- a/java-frontend/src/test/java/org/sonar/java/DefaultJavaResourceLocatorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/DefaultJavaResourceLocatorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ExecutionTimeReportTest.java b/java-frontend/src/test/java/org/sonar/java/ExecutionTimeReportTest.java index 00d295495d..397e34e4b9 100644 --- a/java-frontend/src/test/java/org/sonar/java/ExecutionTimeReportTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ExecutionTimeReportTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/InputFileUtils.java b/java-frontend/src/test/java/org/sonar/java/InputFileUtils.java index 2453789c8b..5678134ae9 100644 --- a/java-frontend/src/test/java/org/sonar/java/InputFileUtils.java +++ b/java-frontend/src/test/java/org/sonar/java/InputFileUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/JavaConstantsTest.java b/java-frontend/src/test/java/org/sonar/java/JavaConstantsTest.java index 1c74979a1d..ae35c76575 100644 --- a/java-frontend/src/test/java/org/sonar/java/JavaConstantsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/JavaConstantsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/JavaFilesCacheTest.java b/java-frontend/src/test/java/org/sonar/java/JavaFilesCacheTest.java index 2731082307..898e3c7184 100644 --- a/java-frontend/src/test/java/org/sonar/java/JavaFilesCacheTest.java +++ b/java-frontend/src/test/java/org/sonar/java/JavaFilesCacheTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/JavaFrontendTest.java b/java-frontend/src/test/java/org/sonar/java/JavaFrontendTest.java index a072b8b93b..c0a8cb8824 100644 --- a/java-frontend/src/test/java/org/sonar/java/JavaFrontendTest.java +++ b/java-frontend/src/test/java/org/sonar/java/JavaFrontendTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/JavaVersionAwareVisitorTest.java b/java-frontend/src/test/java/org/sonar/java/JavaVersionAwareVisitorTest.java index a9f776a8bc..0efbe0e3f9 100644 --- a/java-frontend/src/test/java/org/sonar/java/JavaVersionAwareVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/JavaVersionAwareVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/MeasurerTest.java b/java-frontend/src/test/java/org/sonar/java/MeasurerTest.java index e8a17263dd..a53c2e452f 100644 --- a/java-frontend/src/test/java/org/sonar/java/MeasurerTest.java +++ b/java-frontend/src/test/java/org/sonar/java/MeasurerTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/MeasurerTester.java b/java-frontend/src/test/java/org/sonar/java/MeasurerTester.java index 1bea3dc9af..6dac5e86ea 100644 --- a/java-frontend/src/test/java/org/sonar/java/MeasurerTester.java +++ b/java-frontend/src/test/java/org/sonar/java/MeasurerTester.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ProgressMonitorTest.java b/java-frontend/src/test/java/org/sonar/java/ProgressMonitorTest.java index 35e9dfb4a5..eb57e3d0df 100644 --- a/java-frontend/src/test/java/org/sonar/java/ProgressMonitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ProgressMonitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/SonarComponentsTest.java b/java-frontend/src/test/java/org/sonar/java/SonarComponentsTest.java index dae12b44f5..8d4c404b31 100644 --- a/java-frontend/src/test/java/org/sonar/java/SonarComponentsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/SonarComponentsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/StrutsTest.java b/java-frontend/src/test/java/org/sonar/java/StrutsTest.java index a17a0b60ad..1c63676b23 100644 --- a/java-frontend/src/test/java/org/sonar/java/StrutsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/StrutsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/TestUtils.java b/java-frontend/src/test/java/org/sonar/java/TestUtils.java index e3001f3284..8ca2752580 100644 --- a/java-frontend/src/test/java/org/sonar/java/TestUtils.java +++ b/java-frontend/src/test/java/org/sonar/java/TestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/TestUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/TestUtilsTest.java index 6739a30233..fc3ed4da7b 100644 --- a/java-frontend/src/test/java/org/sonar/java/TestUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/TestUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/JavaAstScannerTest.java b/java-frontend/src/test/java/org/sonar/java/ast/JavaAstScannerTest.java index e4f90461f2..f580dab5da 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/JavaAstScannerTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/JavaAstScannerTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/api/JavaKeywordTest.java b/java-frontend/src/test/java/org/sonar/java/ast/api/JavaKeywordTest.java index e714180534..375d654146 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/api/JavaKeywordTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/api/JavaKeywordTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/api/JavaPunctuatorTest.java b/java-frontend/src/test/java/org/sonar/java/ast/api/JavaPunctuatorTest.java index 7bc0bb0f9c..431f838175 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/api/JavaPunctuatorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/api/JavaPunctuatorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/api/JavaRestrictedKeywordTest.java b/java-frontend/src/test/java/org/sonar/java/ast/api/JavaRestrictedKeywordTest.java index 16f941c107..7f538a8694 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/api/JavaRestrictedKeywordTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/api/JavaRestrictedKeywordTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/AccessorsUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/AccessorsUtilsTest.java index 87d4c2cc2a..72dab479c4 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/AccessorsUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/AccessorsUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/ComplexityVisitorTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/ComplexityVisitorTest.java index 4cb4a54c33..1341acce89 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/ComplexityVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/ComplexityVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/FileLinesVisitorTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/FileLinesVisitorTest.java index 589fd76d72..e07d6ff0de 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/FileLinesVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/FileLinesVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitorTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitorTest.java index 42d5500e6c..dcd517ea57 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/MethodNestingLevelVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitorTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitorTest.java index 308271924d..fdb07dd27b 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/NumberOfAccessedVariablesVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/PublicApiCheckerTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/PublicApiCheckerTest.java index 0ebe55205f..6e03563fbc 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/PublicApiCheckerTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/PublicApiCheckerTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitorTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitorTest.java index 9af120fd93..0a5057cdb9 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/SonarSymbolTableVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitorTest.java b/java-frontend/src/test/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitorTest.java index 410e11ea2b..2ae6a56e8f 100644 --- a/java-frontend/src/test/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/ast/visitors/SyntaxHighlighterVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/caching/CacheContextImplTest.java b/java-frontend/src/test/java/org/sonar/java/caching/CacheContextImplTest.java index 7c8edeade4..16b33e63bf 100644 --- a/java-frontend/src/test/java/org/sonar/java/caching/CacheContextImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/caching/CacheContextImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/caching/ContentHashCacheTest.java b/java-frontend/src/test/java/org/sonar/java/caching/ContentHashCacheTest.java index 2036bdbf59..7b504238e6 100644 --- a/java-frontend/src/test/java/org/sonar/java/caching/ContentHashCacheTest.java +++ b/java-frontend/src/test/java/org/sonar/java/caching/ContentHashCacheTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/caching/DummyCacheTest.java b/java-frontend/src/test/java/org/sonar/java/caching/DummyCacheTest.java index c03d0873e1..2bb8800850 100644 --- a/java-frontend/src/test/java/org/sonar/java/caching/DummyCacheTest.java +++ b/java-frontend/src/test/java/org/sonar/java/caching/DummyCacheTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/caching/JavaReadCacheImplTest.java b/java-frontend/src/test/java/org/sonar/java/caching/JavaReadCacheImplTest.java index f63a27f85f..564a549c77 100644 --- a/java-frontend/src/test/java/org/sonar/java/caching/JavaReadCacheImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/caching/JavaReadCacheImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/caching/JavaWriteCacheImplTest.java b/java-frontend/src/test/java/org/sonar/java/caching/JavaWriteCacheImplTest.java index 67de13088a..a76b317e55 100644 --- a/java-frontend/src/test/java/org/sonar/java/caching/JavaWriteCacheImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/caching/JavaWriteCacheImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/cfg/CFGDebug.java b/java-frontend/src/test/java/org/sonar/java/cfg/CFGDebug.java index 8508d3ef7c..483b1705b5 100644 --- a/java-frontend/src/test/java/org/sonar/java/cfg/CFGDebug.java +++ b/java-frontend/src/test/java/org/sonar/java/cfg/CFGDebug.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/cfg/CFGLoopTest.java b/java-frontend/src/test/java/org/sonar/java/cfg/CFGLoopTest.java index 46ca672ef2..806b26989b 100644 --- a/java-frontend/src/test/java/org/sonar/java/cfg/CFGLoopTest.java +++ b/java-frontend/src/test/java/org/sonar/java/cfg/CFGLoopTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/cfg/CFGTest.java b/java-frontend/src/test/java/org/sonar/java/cfg/CFGTest.java index ff3b547aeb..5225cdd185 100644 --- a/java-frontend/src/test/java/org/sonar/java/cfg/CFGTest.java +++ b/java-frontend/src/test/java/org/sonar/java/cfg/CFGTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestLoader.java b/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestLoader.java index c87fecacfe..fcde46dbd8 100644 --- a/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestLoader.java +++ b/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestLoader.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestUtils.java b/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestUtils.java index ef825c70c7..e5dd1cc8ce 100644 --- a/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestUtils.java +++ b/java-frontend/src/test/java/org/sonar/java/cfg/CFGTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/cfg/LiveVariablesTest.java b/java-frontend/src/test/java/org/sonar/java/cfg/LiveVariablesTest.java index f7576f5bf9..5a62897d07 100644 --- a/java-frontend/src/test/java/org/sonar/java/cfg/LiveVariablesTest.java +++ b/java-frontend/src/test/java/org/sonar/java/cfg/LiveVariablesTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/cfg/VariableReadExtractorTest.java b/java-frontend/src/test/java/org/sonar/java/cfg/VariableReadExtractorTest.java index 07e66e6709..395621c62a 100644 --- a/java-frontend/src/test/java/org/sonar/java/cfg/VariableReadExtractorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/cfg/VariableReadExtractorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/checks/EndOfAnalysisVisitor.java b/java-frontend/src/test/java/org/sonar/java/checks/EndOfAnalysisVisitor.java index 05aed313fa..c9c9f6af3d 100644 --- a/java-frontend/src/test/java/org/sonar/java/checks/EndOfAnalysisVisitor.java +++ b/java-frontend/src/test/java/org/sonar/java/checks/EndOfAnalysisVisitor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/checks/VisitorThatCanBeSkipped.java b/java-frontend/src/test/java/org/sonar/java/checks/VisitorThatCanBeSkipped.java index 16db157caf..7c4a707856 100644 --- a/java-frontend/src/test/java/org/sonar/java/checks/VisitorThatCanBeSkipped.java +++ b/java-frontend/src/test/java/org/sonar/java/checks/VisitorThatCanBeSkipped.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForMainTest.java b/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForMainTest.java index 18df24a5db..e840629894 100644 --- a/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForMainTest.java +++ b/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForMainTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForTestTest.java b/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForTestTest.java index 643748eb15..d3b0b9e5ca 100644 --- a/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForTestTest.java +++ b/java-frontend/src/test/java/org/sonar/java/classpath/ClasspathForTestTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/classpath/DependencyVersionInferenceTest.java b/java-frontend/src/test/java/org/sonar/java/classpath/DependencyVersionInferenceTest.java index 4bca3a997a..188614c988 100644 --- a/java-frontend/src/test/java/org/sonar/java/classpath/DependencyVersionInferenceTest.java +++ b/java-frontend/src/test/java/org/sonar/java/classpath/DependencyVersionInferenceTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/classpath/JavaSdkUtilTest.java b/java-frontend/src/test/java/org/sonar/java/classpath/JavaSdkUtilTest.java index 3b5cd27836..ffb8a30dda 100644 --- a/java-frontend/src/test/java/org/sonar/java/classpath/JavaSdkUtilTest.java +++ b/java-frontend/src/test/java/org/sonar/java/classpath/JavaSdkUtilTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/classpath/VersionTest.java b/java-frontend/src/test/java/org/sonar/java/classpath/VersionTest.java index ffe97716ec..ea75aff46f 100644 --- a/java-frontend/src/test/java/org/sonar/java/classpath/VersionTest.java +++ b/java-frontend/src/test/java/org/sonar/java/classpath/VersionTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/collections/CollectionUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/collections/CollectionUtilsTest.java index ef942a492b..15bd2257a9 100644 --- a/java-frontend/src/test/java/org/sonar/java/collections/CollectionUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/collections/CollectionUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/exceptions/ThrowableUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/exceptions/ThrowableUtilsTest.java index 7ddc4e4fa7..744665c73f 100644 --- a/java-frontend/src/test/java/org/sonar/java/exceptions/ThrowableUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/exceptions/ThrowableUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/matcher/MethodMatcherFactoryTest.java b/java-frontend/src/test/java/org/sonar/java/matcher/MethodMatcherFactoryTest.java index e2b0156d10..440ed8ac2a 100644 --- a/java-frontend/src/test/java/org/sonar/java/matcher/MethodMatcherFactoryTest.java +++ b/java-frontend/src/test/java/org/sonar/java/matcher/MethodMatcherFactoryTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/matcher/TreeMatcherTest.java b/java-frontend/src/test/java/org/sonar/java/matcher/TreeMatcherTest.java index 87b164ae8a..15eb83b520 100644 --- a/java-frontend/src/test/java/org/sonar/java/matcher/TreeMatcherTest.java +++ b/java-frontend/src/test/java/org/sonar/java/matcher/TreeMatcherTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/metrics/MetricsComputerTest.java b/java-frontend/src/test/java/org/sonar/java/metrics/MetricsComputerTest.java index de3ac9cddc..39eb6c23cd 100644 --- a/java-frontend/src/test/java/org/sonar/java/metrics/MetricsComputerTest.java +++ b/java-frontend/src/test/java/org/sonar/java/metrics/MetricsComputerTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/ClassesLayoutTest.java b/java-frontend/src/test/java/org/sonar/java/model/ClassesLayoutTest.java index 04a54f633e..3f2c0892ea 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/ClassesLayoutTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/ClassesLayoutTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/DefaultInputFileScannerContextTest.java b/java-frontend/src/test/java/org/sonar/java/model/DefaultInputFileScannerContextTest.java index efcaaf089e..e44b1412f7 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/DefaultInputFileScannerContextTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/DefaultInputFileScannerContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextTest.java b/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextTest.java index 7a32287485..489d14897c 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextWithSensorContextTest.java b/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextWithSensorContextTest.java index df615533bc..61a7c318d6 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextWithSensorContextTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/DefaultJavaFileScannerContextWithSensorContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/DefaultModuleScannerContextTest.java b/java-frontend/src/test/java/org/sonar/java/model/DefaultModuleScannerContextTest.java index 22ba31a6b6..7f7cade3ff 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/DefaultModuleScannerContextTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/DefaultModuleScannerContextTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/ExpressionUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/model/ExpressionUtilsTest.java index ac40269986..a7a521a572 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/ExpressionUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/ExpressionUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/GeneratedFileTest.java b/java-frontend/src/test/java/org/sonar/java/model/GeneratedFileTest.java index c0c82f8b44..062fd3baff 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/GeneratedFileTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/GeneratedFileTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/InputFileUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/model/InputFileUtilsTest.java index 7f371d4c5d..9a52599451 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/InputFileUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/InputFileUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTokenTest.java b/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTokenTest.java index 32a8f659ea..66854633dc 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTokenTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTokenTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTriviaTest.java b/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTriviaTest.java index 05bffe8f76..26d03be5be 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTriviaTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/InternalSyntaxTriviaTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JLabelSymbolTest.java b/java-frontend/src/test/java/org/sonar/java/model/JLabelSymbolTest.java index 2590baaff2..69a0dee1af 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JLabelSymbolTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JLabelSymbolTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JMethodSymbolTest.java b/java-frontend/src/test/java/org/sonar/java/model/JMethodSymbolTest.java index c85e2db399..2756b9674f 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JMethodSymbolTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JMethodSymbolTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JParserConfigTest.java b/java-frontend/src/test/java/org/sonar/java/model/JParserConfigTest.java index 0f71bd9750..1af9976070 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JParserConfigTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JParserConfigTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JParserReleasingJarsTest.java b/java-frontend/src/test/java/org/sonar/java/model/JParserReleasingJarsTest.java index 75f1b88e39..1e562a9a50 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JParserReleasingJarsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JParserReleasingJarsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JParserSemanticTest.java b/java-frontend/src/test/java/org/sonar/java/model/JParserSemanticTest.java index 3ef832296b..aea3e1aec8 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JParserSemanticTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JParserSemanticTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JParserTest.java b/java-frontend/src/test/java/org/sonar/java/model/JParserTest.java index 30a7686a0e..718151768f 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JParserTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JParserTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JParserTestUtils.java b/java-frontend/src/test/java/org/sonar/java/model/JParserTestUtils.java index 990bd1326e..3431cbb294 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JParserTestUtils.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JParserTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JProblemTest.java b/java-frontend/src/test/java/org/sonar/java/model/JProblemTest.java index 915791cc16..70f99d11ef 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JProblemTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JProblemTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JSemaTest.java b/java-frontend/src/test/java/org/sonar/java/model/JSemaTest.java index 255a3356cb..3cf4d39911 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JSemaTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JSemaTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JSymbolMetadataTest.java b/java-frontend/src/test/java/org/sonar/java/model/JSymbolMetadataTest.java index eeb5885990..cda1a76777 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JSymbolMetadataTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JSymbolMetadataTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JSymbolTest.java b/java-frontend/src/test/java/org/sonar/java/model/JSymbolTest.java index 1352696062..6d669295b9 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JSymbolTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JSymbolTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JTypeSymbolTest.java b/java-frontend/src/test/java/org/sonar/java/model/JTypeSymbolTest.java index 05296276bc..31c74d02c3 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JTypeSymbolTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JTypeSymbolTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JTypeTest.java b/java-frontend/src/test/java/org/sonar/java/model/JTypeTest.java index bf38ce6fb9..610e4944a5 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JTypeTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JTypeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/model/JUtilsTest.java index 37d453d4fb..2fd571bf9e 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JVariableSymbolTest.java b/java-frontend/src/test/java/org/sonar/java/model/JVariableSymbolTest.java index 9b4798b08c..63d52960f0 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JVariableSymbolTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JVariableSymbolTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JWarningTest.java b/java-frontend/src/test/java/org/sonar/java/model/JWarningTest.java index bd3da1a4a3..cbf41e9428 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JWarningTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JWarningTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JavaTreeModelTest.java b/java-frontend/src/test/java/org/sonar/java/model/JavaTreeModelTest.java index deacc9d1cb..bbc1244fca 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JavaTreeModelTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JavaTreeModelTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/JavaVersionImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/JavaVersionImplTest.java index 8ba32a5c32..d3fb228b6f 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/JavaVersionImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/JavaVersionImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/KeywordSuperTest.java b/java-frontend/src/test/java/org/sonar/java/model/KeywordSuperTest.java index 8f2f592721..764cc13b50 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/KeywordSuperTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/KeywordSuperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/KeywordThisTest.java b/java-frontend/src/test/java/org/sonar/java/model/KeywordThisTest.java index ad68bc776b..3df9f1e5c2 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/KeywordThisTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/KeywordThisTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/LineColumnConverterTest.java b/java-frontend/src/test/java/org/sonar/java/model/LineColumnConverterTest.java index a6f9b69131..0b16d77715 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/LineColumnConverterTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/LineColumnConverterTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/LineUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/model/LineUtilsTest.java index d75a88b35f..373f1ffc6b 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/LineUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/LineUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/LiteralUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/model/LiteralUtilsTest.java index a869ed3fc3..35160b0763 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/LiteralUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/LiteralUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/ModifiersUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/model/ModifiersUtilsTest.java index 3ef2ceee50..92ce4e5dcb 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/ModifiersUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/ModifiersUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/PackageUtilsTest.java b/java-frontend/src/test/java/org/sonar/java/model/PackageUtilsTest.java index 3c1405491d..0ed5d0891e 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/PackageUtilsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/PackageUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/SmapFileTest.java b/java-frontend/src/test/java/org/sonar/java/model/SmapFileTest.java index bb82a76129..600761e3ef 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/SmapFileTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/SmapFileTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/SymbolsTest.java b/java-frontend/src/test/java/org/sonar/java/model/SymbolsTest.java index b98449e4e4..345cb575b6 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/SymbolsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/SymbolsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/SyntacticEquivalenceTest.java b/java-frontend/src/test/java/org/sonar/java/model/SyntacticEquivalenceTest.java index 54b33adc1b..914711eaca 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/SyntacticEquivalenceTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/SyntacticEquivalenceTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/SyntaxTreeDebug.java b/java-frontend/src/test/java/org/sonar/java/model/SyntaxTreeDebug.java index 6480ccf6a6..a34130e3c6 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/SyntaxTreeDebug.java +++ b/java-frontend/src/test/java/org/sonar/java/model/SyntaxTreeDebug.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/TreeTokenCompletenessTest.java b/java-frontend/src/test/java/org/sonar/java/model/TreeTokenCompletenessTest.java index c554450b6c..57cc3897e9 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/TreeTokenCompletenessTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/TreeTokenCompletenessTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/VisitorsBridgeTest.java b/java-frontend/src/test/java/org/sonar/java/model/VisitorsBridgeTest.java index 4c7910094d..8ffcecd805 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/VisitorsBridgeTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/VisitorsBridgeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/assertions/SymbolAssert.java b/java-frontend/src/test/java/org/sonar/java/model/assertions/SymbolAssert.java index b7390fd945..e3452b84e1 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/assertions/SymbolAssert.java +++ b/java-frontend/src/test/java/org/sonar/java/model/assertions/SymbolAssert.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/assertions/TreeAssert.java b/java-frontend/src/test/java/org/sonar/java/model/assertions/TreeAssert.java index 1be5e7259b..40a43d9779 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/assertions/TreeAssert.java +++ b/java-frontend/src/test/java/org/sonar/java/model/assertions/TreeAssert.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/assertions/TypeAssert.java b/java-frontend/src/test/java/org/sonar/java/model/assertions/TypeAssert.java index ec2da5eb64..df87f8ee79 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/assertions/TypeAssert.java +++ b/java-frontend/src/test/java/org/sonar/java/model/assertions/TypeAssert.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/assertions/package-info.java b/java-frontend/src/test/java/org/sonar/java/model/assertions/package-info.java index 02ff7eb0cf..3492d0d21a 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/assertions/package-info.java +++ b/java-frontend/src/test/java/org/sonar/java/model/assertions/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/ClassTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/ClassTreeImplTest.java index 77abe813be..cf65cedca0 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/ClassTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/ClassTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImplTest.java index b9ba8e34b5..aeb1bf7445 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/ExportsDirectiveTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/ListTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/ListTreeImplTest.java index c4d3e37f08..242109eed2 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/ListTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/ListTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/MethodTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/MethodTreeImplTest.java index 761b4da038..9eab52ad3a 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/MethodTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/MethodTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImplTest.java index 1e213a5354..84cc0f48d2 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/ModuleDeclarationTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/OpensDirectiveTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/OpensDirectiveTreeImplTest.java index 846344d3b6..5fe0fa5636 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/OpensDirectiveTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/OpensDirectiveTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImplTest.java index a12359e437..e3c407e4cf 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/ProvidesDirectiveTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImplTest.java index 2968c5ffd0..59249bda29 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/RequiresDirectiveTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/declaration/UsesDirectiveTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/declaration/UsesDirectiveTreeImplTest.java index 2c9b170664..8fe78c8e25 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/declaration/UsesDirectiveTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/declaration/UsesDirectiveTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/expression/AssessableExpressionTreeTest.java b/java-frontend/src/test/java/org/sonar/java/model/expression/AssessableExpressionTreeTest.java index f746cce1ac..06cceef0a0 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/expression/AssessableExpressionTreeTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/expression/AssessableExpressionTreeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/expression/InstanceOfTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/expression/InstanceOfTreeImplTest.java index 422576e78a..37432bb835 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/expression/InstanceOfTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/expression/InstanceOfTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/expression/LambdaExpressionTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/expression/LambdaExpressionTreeImplTest.java index 734967b9e6..dcac9ad105 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/expression/LambdaExpressionTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/expression/LambdaExpressionTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/expression/MethodInvocationTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/expression/MethodInvocationTreeImplTest.java index 2855a00403..b95d8a3fbd 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/expression/MethodInvocationTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/expression/MethodInvocationTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/location/InternalPositionTest.java b/java-frontend/src/test/java/org/sonar/java/model/location/InternalPositionTest.java index f4628c9db5..8f98fbec88 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/location/InternalPositionTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/location/InternalPositionTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/location/InternalRangeTest.java b/java-frontend/src/test/java/org/sonar/java/model/location/InternalRangeTest.java index 29effb2966..f6fa00aa8f 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/location/InternalRangeTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/location/InternalRangeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/pattern/AbstractPatternTreeTest.java b/java-frontend/src/test/java/org/sonar/java/model/pattern/AbstractPatternTreeTest.java index e343ba48c6..eb0fe2cde1 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/pattern/AbstractPatternTreeTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/pattern/AbstractPatternTreeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/pattern/RecordPatternTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/pattern/RecordPatternTreeImplTest.java index 7d2a6dadd2..f36afa525c 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/pattern/RecordPatternTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/pattern/RecordPatternTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/model/statement/ContinueStatementTreeImplTest.java b/java-frontend/src/test/java/org/sonar/java/model/statement/ContinueStatementTreeImplTest.java index 057c248906..23d0620c48 100644 --- a/java-frontend/src/test/java/org/sonar/java/model/statement/ContinueStatementTreeImplTest.java +++ b/java-frontend/src/test/java/org/sonar/java/model/statement/ContinueStatementTreeImplTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/notchecks/VisitorNotInChecksPackage.java b/java-frontend/src/test/java/org/sonar/java/notchecks/VisitorNotInChecksPackage.java index 5806da7890..8edb8effcd 100644 --- a/java-frontend/src/test/java/org/sonar/java/notchecks/VisitorNotInChecksPackage.java +++ b/java-frontend/src/test/java/org/sonar/java/notchecks/VisitorNotInChecksPackage.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/regex/JavaAnalyzerRegexSourceTest.java b/java-frontend/src/test/java/org/sonar/java/regex/JavaAnalyzerRegexSourceTest.java index a9ca1ff567..03cbb60fab 100644 --- a/java-frontend/src/test/java/org/sonar/java/regex/JavaAnalyzerRegexSourceTest.java +++ b/java-frontend/src/test/java/org/sonar/java/regex/JavaAnalyzerRegexSourceTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/regex/RegexCacheTest.java b/java-frontend/src/test/java/org/sonar/java/regex/RegexCacheTest.java index 65077f6580..9cec52592f 100644 --- a/java-frontend/src/test/java/org/sonar/java/regex/RegexCacheTest.java +++ b/java-frontend/src/test/java/org/sonar/java/regex/RegexCacheTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/regex/RegexCheckTest.java b/java-frontend/src/test/java/org/sonar/java/regex/RegexCheckTest.java index ddacd30acb..1d7a3b440d 100644 --- a/java-frontend/src/test/java/org/sonar/java/regex/RegexCheckTest.java +++ b/java-frontend/src/test/java/org/sonar/java/regex/RegexCheckTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/regex/RegexParserTestUtils.java b/java-frontend/src/test/java/org/sonar/java/regex/RegexParserTestUtils.java index df03aa5d92..254e3002c9 100644 --- a/java-frontend/src/test/java/org/sonar/java/regex/RegexParserTestUtils.java +++ b/java-frontend/src/test/java/org/sonar/java/regex/RegexParserTestUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/reporting/AnalyzerMessageTest.java b/java-frontend/src/test/java/org/sonar/java/reporting/AnalyzerMessageTest.java index 192039e2a5..de025113b0 100644 --- a/java-frontend/src/test/java/org/sonar/java/reporting/AnalyzerMessageTest.java +++ b/java-frontend/src/test/java/org/sonar/java/reporting/AnalyzerMessageTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/reporting/InternalJavaIssueBuilderTest.java b/java-frontend/src/test/java/org/sonar/java/reporting/InternalJavaIssueBuilderTest.java index 877e6c6ac5..cf13ba9d9c 100644 --- a/java-frontend/src/test/java/org/sonar/java/reporting/InternalJavaIssueBuilderTest.java +++ b/java-frontend/src/test/java/org/sonar/java/reporting/InternalJavaIssueBuilderTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/reporting/JavaIssueTest.java b/java-frontend/src/test/java/org/sonar/java/reporting/JavaIssueTest.java index 9abe024acd..c1ec959e39 100644 --- a/java-frontend/src/test/java/org/sonar/java/reporting/JavaIssueTest.java +++ b/java-frontend/src/test/java/org/sonar/java/reporting/JavaIssueTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/reporting/JavaQuickFixTest.java b/java-frontend/src/test/java/org/sonar/java/reporting/JavaQuickFixTest.java index 8fe9478d3e..817ee5ba79 100644 --- a/java-frontend/src/test/java/org/sonar/java/reporting/JavaQuickFixTest.java +++ b/java-frontend/src/test/java/org/sonar/java/reporting/JavaQuickFixTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/reporting/JavaTextEditTest.java b/java-frontend/src/test/java/org/sonar/java/reporting/JavaTextEditTest.java index 84c4e27ccd..5fa500947c 100644 --- a/java-frontend/src/test/java/org/sonar/java/reporting/JavaTextEditTest.java +++ b/java-frontend/src/test/java/org/sonar/java/reporting/JavaTextEditTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/resolve/ConstantTest.java b/java-frontend/src/test/java/org/sonar/java/resolve/ConstantTest.java index c91f3b69c1..3e8cb05ca7 100644 --- a/java-frontend/src/test/java/org/sonar/java/resolve/ConstantTest.java +++ b/java-frontend/src/test/java/org/sonar/java/resolve/ConstantTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/resolve/targets/ClassWithConstants.java b/java-frontend/src/test/java/org/sonar/java/resolve/targets/ClassWithConstants.java index 361ed3a987..18166e45f8 100644 --- a/java-frontend/src/test/java/org/sonar/java/resolve/targets/ClassWithConstants.java +++ b/java-frontend/src/test/java/org/sonar/java/resolve/targets/ClassWithConstants.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/resolve/targets/package-info.java b/java-frontend/src/test/java/org/sonar/java/resolve/targets/package-info.java index 3b14ab6c09..7f6c4a35a4 100644 --- a/java-frontend/src/test/java/org/sonar/java/resolve/targets/package-info.java +++ b/java-frontend/src/test/java/org/sonar/java/resolve/targets/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/telemetry/AlphaNumericComparatorTest.java b/java-frontend/src/test/java/org/sonar/java/telemetry/AlphaNumericComparatorTest.java index bc386307b6..69486d60c1 100644 --- a/java-frontend/src/test/java/org/sonar/java/telemetry/AlphaNumericComparatorTest.java +++ b/java-frontend/src/test/java/org/sonar/java/telemetry/AlphaNumericComparatorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/telemetry/DefaultTelemetryTest.java b/java-frontend/src/test/java/org/sonar/java/telemetry/DefaultTelemetryTest.java index e0c73647a3..c424477b62 100644 --- a/java-frontend/src/test/java/org/sonar/java/telemetry/DefaultTelemetryTest.java +++ b/java-frontend/src/test/java/org/sonar/java/telemetry/DefaultTelemetryTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/telemetry/NoOpTelemetryTest.java b/java-frontend/src/test/java/org/sonar/java/telemetry/NoOpTelemetryTest.java index 520ca8d4d9..b8905aaff3 100644 --- a/java-frontend/src/test/java/org/sonar/java/telemetry/NoOpTelemetryTest.java +++ b/java-frontend/src/test/java/org/sonar/java/telemetry/NoOpTelemetryTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/telemetry/TelemetryKeyTest.java b/java-frontend/src/test/java/org/sonar/java/telemetry/TelemetryKeyTest.java index 18ff098dde..0041fc6e5e 100644 --- a/java-frontend/src/test/java/org/sonar/java/telemetry/TelemetryKeyTest.java +++ b/java-frontend/src/test/java/org/sonar/java/telemetry/TelemetryKeyTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/testing/JavaFileScannerContextForTestsTest.java b/java-frontend/src/test/java/org/sonar/java/testing/JavaFileScannerContextForTestsTest.java index e092d638df..4719b96125 100644 --- a/java-frontend/src/test/java/org/sonar/java/testing/JavaFileScannerContextForTestsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/testing/JavaFileScannerContextForTestsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/testing/ThreadLocalLogTester.java b/java-frontend/src/test/java/org/sonar/java/testing/ThreadLocalLogTester.java index b8e84ad820..d32c60c2cb 100644 --- a/java-frontend/src/test/java/org/sonar/java/testing/ThreadLocalLogTester.java +++ b/java-frontend/src/test/java/org/sonar/java/testing/ThreadLocalLogTester.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/java/testing/VisitorsBridgeForTestsTest.java b/java-frontend/src/test/java/org/sonar/java/testing/VisitorsBridgeForTestsTest.java index f5b9df829f..00b015cd41 100644 --- a/java-frontend/src/test/java/org/sonar/java/testing/VisitorsBridgeForTestsTest.java +++ b/java-frontend/src/test/java/org/sonar/java/testing/VisitorsBridgeForTestsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/plugins/java/api/CheckRegistrarTest.java b/java-frontend/src/test/java/org/sonar/plugins/java/api/CheckRegistrarTest.java index 84136f5d10..7cdaa47220 100644 --- a/java-frontend/src/test/java/org/sonar/plugins/java/api/CheckRegistrarTest.java +++ b/java-frontend/src/test/java/org/sonar/plugins/java/api/CheckRegistrarTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitorTest.java b/java-frontend/src/test/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitorTest.java index 337c132dc0..c882318cf2 100644 --- a/java-frontend/src/test/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitorTest.java +++ b/java-frontend/src/test/java/org/sonar/plugins/java/api/IssuableSubscriptionVisitorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/plugins/java/api/LocationTest.java b/java-frontend/src/test/java/org/sonar/plugins/java/api/LocationTest.java index e69b379276..9f06be7698 100644 --- a/java-frontend/src/test/java/org/sonar/plugins/java/api/LocationTest.java +++ b/java-frontend/src/test/java/org/sonar/plugins/java/api/LocationTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/plugins/java/api/caching/SonarLintCacheTest.java b/java-frontend/src/test/java/org/sonar/plugins/java/api/caching/SonarLintCacheTest.java index 207d9ad35d..0e97ff5f13 100644 --- a/java-frontend/src/test/java/org/sonar/plugins/java/api/caching/SonarLintCacheTest.java +++ b/java-frontend/src/test/java/org/sonar/plugins/java/api/caching/SonarLintCacheTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/plugins/java/api/semantic/MethodMatchersTest.java b/java-frontend/src/test/java/org/sonar/plugins/java/api/semantic/MethodMatchersTest.java index 4eac612096..2bc960d3fc 100644 --- a/java-frontend/src/test/java/org/sonar/plugins/java/api/semantic/MethodMatchersTest.java +++ b/java-frontend/src/test/java/org/sonar/plugins/java/api/semantic/MethodMatchersTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-frontend/src/test/java/org/sonar/plugins/java/api/tree/TreeTest.java b/java-frontend/src/test/java/org/sonar/plugins/java/api/tree/TreeTest.java index cdd92617e0..cf0c4c14df 100644 --- a/java-frontend/src/test/java/org/sonar/plugins/java/api/tree/TreeTest.java +++ b/java-frontend/src/test/java/org/sonar/plugins/java/api/tree/TreeTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-jsp/src/main/java/org/sonar/java/jsp/Jasper.java b/java-jsp/src/main/java/org/sonar/java/jsp/Jasper.java index 05a846ec0d..2ec5da5d56 100644 --- a/java-jsp/src/main/java/org/sonar/java/jsp/Jasper.java +++ b/java-jsp/src/main/java/org/sonar/java/jsp/Jasper.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-jsp/src/main/java/org/sonar/java/jsp/JasperOptions.java b/java-jsp/src/main/java/org/sonar/java/jsp/JasperOptions.java index cc3a3c742f..2aeb823228 100644 --- a/java-jsp/src/main/java/org/sonar/java/jsp/JasperOptions.java +++ b/java-jsp/src/main/java/org/sonar/java/jsp/JasperOptions.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-jsp/src/main/java/org/sonar/java/jsp/package-info.java b/java-jsp/src/main/java/org/sonar/java/jsp/package-info.java index 9d0e306396..89eff68808 100644 --- a/java-jsp/src/main/java/org/sonar/java/jsp/package-info.java +++ b/java-jsp/src/main/java/org/sonar/java/jsp/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-jsp/src/test/java/org/sonar/java/jsp/JasperOptionsTest.java b/java-jsp/src/test/java/org/sonar/java/jsp/JasperOptionsTest.java index 7eb2868fa5..c6ea847fbf 100644 --- a/java-jsp/src/test/java/org/sonar/java/jsp/JasperOptionsTest.java +++ b/java-jsp/src/test/java/org/sonar/java/jsp/JasperOptionsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-jsp/src/test/java/org/sonar/java/jsp/JasperTest.java b/java-jsp/src/test/java/org/sonar/java/jsp/JasperTest.java index 4798458b2d..7861058fac 100644 --- a/java-jsp/src/test/java/org/sonar/java/jsp/JasperTest.java +++ b/java-jsp/src/test/java/org/sonar/java/jsp/JasperTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/StaxParser.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/StaxParser.java index ad0cb3124a..df7c6a670d 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/StaxParser.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/StaxParser.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireExtensions.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireExtensions.java index a80a7f5098..85d8835148 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireExtensions.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireExtensions.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireJavaParser.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireJavaParser.java index ed7550d053..0dc6ca4956 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireJavaParser.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireJavaParser.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireSensor.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireSensor.java index 98b7a96ce5..493155d6e3 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireSensor.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/SurefireSensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/api/SurefireUtils.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/api/SurefireUtils.java index b9a118524f..249b5c0834 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/api/SurefireUtils.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/api/SurefireUtils.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/api/package-info.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/api/package-info.java index 8cdb53909a..5f70cabd10 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/api/package-info.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/api/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/SurefireStaxHandler.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/SurefireStaxHandler.java index 4501ed75c2..428120864d 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/SurefireStaxHandler.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/SurefireStaxHandler.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestClassReport.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestClassReport.java index 7127c6edb9..9dfce23f25 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestClassReport.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestClassReport.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestIndex.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestIndex.java index ba19763d7a..c6141eb10a 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestIndex.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestIndex.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestResult.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestResult.java index b5db7637a8..32c421aded 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestResult.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/UnitTestResult.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/package-info.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/package-info.java index 8477283a54..7ec945606e 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/data/package-info.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/data/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/main/java/org/sonar/plugins/surefire/package-info.java b/java-surefire/src/main/java/org/sonar/plugins/surefire/package-info.java index d54d5d1d50..e5491dfbea 100644 --- a/java-surefire/src/main/java/org/sonar/plugins/surefire/package-info.java +++ b/java-surefire/src/main/java/org/sonar/plugins/surefire/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireExtensionsTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireExtensionsTest.java index 72936a3e73..95c2518307 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireExtensionsTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireExtensionsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireJavaParserTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireJavaParserTest.java index 78ac45b4bb..0b06722f09 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireJavaParserTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireJavaParserTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireSensorTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireSensorTest.java index 97bbd1a3fe..5211e3eb9a 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireSensorTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/SurefireSensorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/api/SurefireUtilsTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/api/SurefireUtilsTest.java index 1bb3e85fb5..7c34d31471 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/api/SurefireUtilsTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/api/SurefireUtilsTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/SurefireStaxHandlerTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/SurefireStaxHandlerTest.java index 03317c3733..cbee6f3f0a 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/SurefireStaxHandlerTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/SurefireStaxHandlerTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestClassReportTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestClassReportTest.java index 3d4120ae4a..2ca6629899 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestClassReportTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestClassReportTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestIndexTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestIndexTest.java index d9e69ad325..ed09ad499a 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestIndexTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestIndexTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestResultTest.java b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestResultTest.java index 84e716e1f7..d7fd2cf136 100644 --- a/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestResultTest.java +++ b/java-surefire/src/test/java/org/sonar/plugins/surefire/data/UnitTestResultTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/DroppedPropertiesSensor.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/DroppedPropertiesSensor.java index 6c7692aebb..bac7a3aeca 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/DroppedPropertiesSensor.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/DroppedPropertiesSensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ExternalReportExtensions.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ExternalReportExtensions.java index 6c42a0f65e..9d8e6202ec 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ExternalReportExtensions.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ExternalReportExtensions.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/Java.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/Java.java index 4a4e9cb4ed..327ed81716 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/Java.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/Java.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaPlugin.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaPlugin.java index 588f60e88a..00651f3979 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaPlugin.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaPlugin.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaRulesDefinition.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaRulesDefinition.java index 703dd73dc7..c3be2a08e4 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaRulesDefinition.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaRulesDefinition.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSensor.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSensor.java index b4dc769366..e2d28b62ad 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSensor.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSonarWayProfile.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSonarWayProfile.java index fd341bfc62..013bf531ad 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSonarWayProfile.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/JavaSonarWayProfile.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensor.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensor.java index 720d97a203..c299d07529 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensor.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensor.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/package-info.java b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/package-info.java index 1c4b32f3ae..e8c7ba747d 100644 --- a/sonar-java-plugin/src/main/java/org/sonar/plugins/java/package-info.java +++ b/sonar-java-plugin/src/main/java/org/sonar/plugins/java/package-info.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/com/sonar/plugins/security/api/JavaRules.java b/sonar-java-plugin/src/test/java/com/sonar/plugins/security/api/JavaRules.java index 7220d1f3f2..e8bb9eb969 100644 --- a/sonar-java-plugin/src/test/java/com/sonar/plugins/security/api/JavaRules.java +++ b/sonar-java-plugin/src/test/java/com/sonar/plugins/security/api/JavaRules.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/com/sonarsource/plugins/dbd/api/JavaRules.java b/sonar-java-plugin/src/test/java/com/sonarsource/plugins/dbd/api/JavaRules.java index 7392113aad..c8c0f7ba79 100644 --- a/sonar-java-plugin/src/test/java/com/sonarsource/plugins/dbd/api/JavaRules.java +++ b/sonar-java-plugin/src/test/java/com/sonarsource/plugins/dbd/api/JavaRules.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/DroppedPropertiesSensorTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/DroppedPropertiesSensorTest.java index 04a5f8c679..b35beccac4 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/DroppedPropertiesSensorTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/DroppedPropertiesSensorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/GeneratedCheckListTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/GeneratedCheckListTest.java index edd64d7eb5..01a6c54915 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/GeneratedCheckListTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/GeneratedCheckListTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaPluginTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaPluginTest.java index dcea09ca41..101cf64837 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaPluginTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaPluginTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaRulesDefinitionTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaRulesDefinitionTest.java index 3bcd2203e3..79a0ce0a25 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaRulesDefinitionTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaRulesDefinitionTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSensorTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSensorTest.java index 2a383b760c..d1d81641ff 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSensorTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSensorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSonarWayProfileTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSonarWayProfileTest.java index e15cabeabf..0c1bfd9e89 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSonarWayProfileTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaSonarWayProfileTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaTest.java index 380ac48b45..b6efa0d136 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/JavaTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/MetadataTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/MetadataTest.java index cc449d2a8f..ffacddea28 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/MetadataTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/MetadataTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensorTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensorTest.java index 2b9a1ba29f..d8531b5dfe 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensorTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/ProjectEndOfAnalysisSensorTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/SanityTest.java b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/SanityTest.java index 0c503d349c..562927e241 100644 --- a/sonar-java-plugin/src/test/java/org/sonar/plugins/java/SanityTest.java +++ b/sonar-java-plugin/src/test/java/org/sonar/plugins/java/SanityTest.java @@ -1,10 +1,10 @@ /* * SonarQube Java - * Copyright (C) 2012-2025 SonarSource SA + * Copyright (C) 2012-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or - * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. + * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource Sàrl. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of