diff --git a/README.md b/README.md index 565b8609..b1ac5143 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ This open source plugin can be used to analyze the ESQL-sourcecode of IBM App Co ## History +- 3.4.0 - New coverage format, bugfixes - 3.3.0 - Upgrade to SonarQube 8.9 - 3.0.0 - Bugfixes, upgrade to sonar SonarQube 7.9 - 2.3.0 - Additional rules, upgrade to SonarQube 6.7, copy paste detector diff --git a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifier.java b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifier.java index bf88f60c..be747fc0 100644 --- a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifier.java +++ b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifier.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/ExpectedIssuesParser.java b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/ExpectedIssuesParser.java index c411d937..f291680e 100644 --- a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/ExpectedIssuesParser.java +++ b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/ExpectedIssuesParser.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestIssue.java b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestIssue.java index 2d980f4f..5928d444 100644 --- a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestIssue.java +++ b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestIssue.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestUtils.java b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestUtils.java index cb68d560..7ce9cf76 100644 --- a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestUtils.java +++ b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TestUtils.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TreeCheckTest.java b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TreeCheckTest.java index d991ebc0..ff6b4140 100644 --- a/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TreeCheckTest.java +++ b/esql-checks-test/src/main/java/com/exxeta/iss/sonar/esql/checks/verifier/TreeCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessageTest.java b/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessageTest.java index a5f98b2e..2714c592 100644 --- a/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessageTest.java +++ b/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessageTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessagesVerifierTest.java b/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessagesVerifierTest.java index 7e0e100f..7dc640c4 100644 --- a/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessagesVerifierTest.java +++ b/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/CheckMessagesVerifierTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifierTest.java b/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifierTest.java index d8154f8d..391bfa2c 100644 --- a/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifierTest.java +++ b/esql-checks-test/src/test/java/com/exxeta/iss/sonar/esql/checks/verifier/EsqlCheckVerifierTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractDoNotUseFunctionCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractDoNotUseFunctionCheck.java index 577e0731..70a17bb5 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractDoNotUseFunctionCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractDoNotUseFunctionCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractPassthruCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractPassthruCheck.java index b4d58480..b373b16d 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractPassthruCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/AbstractPassthruCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2018 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheck.java index ebfa667d..810b3b8f 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheck.java index af6d07af..58a6a230 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheck.java index 3c6a29be..a25487da 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheck.java index d2971715..17f1fff3 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheck.java index e404354c..da3a4a1b 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheck.java index b9f44c60..9fe129ab 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheck.java index 08a32cb0..22c17c76 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheck.java index 40bb0a3f..0bf70c8f 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheck.java index 159121bb..e04e49c1 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckList.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckList.java index a8066984..3744a918 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckList.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckList.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckUtils.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckUtils.java index 8eac6de9..f5648c88 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckUtils.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CheckUtils.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheck.java index 95a54929..f059a654 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheck.java index 32e982dc..5990fcaf 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheck.java index 3142454d..2cea3f48 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheck.java index 1e7a3eaa..0a22bf59 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheck.java index 2d7fd681..aea92ddb 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheck.java index cddf0519..ebc6ab72 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheck.java index 1c1f59ea..e73ed202 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheck.java index 41c9a0e1..5398b16a 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheck.java index bdf9b82d..ca023ea7 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheck.java index 895db817..92e8f10a 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EvalCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EvalCheck.java index 83b974b9..9924238b 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EvalCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/EvalCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheck.java index de57e816..b69472b3 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheck.java index 44c8550a..5c3a2ba1 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheck.java index 3b2037f0..922b9660 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheck.java index a2536563..a2519ee0 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheck.java index d7d9c7c1..7f833369 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheck.java index c16ee8a2..ef72539a 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheck.java index 12145bba..5090d394 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheck.java index 6f534b0c..4ca091eb 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheck.java index a5295477..cdbee574 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheck.java index febea99c..3d7a3e5d 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheck.java index f42a9e9b..a5933d74 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheck.java index d0c43bf4..0ce8a2e1 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheck.java index d121c4c3..f6c38e83 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LineLengthCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LineLengthCheck.java index 61239913..5be5c568 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LineLengthCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LineLengthCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheck.java index 44da5c40..694b8eb7 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheck.java index 525698ac..8b25076e 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheck.java index 4bb6d4b6..61b8d2e3 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheck.java index 8b1c6b78..d0c8087e 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheck.java index bce84ba5..b30ce315 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheck.java index 4ae691d2..9540da16 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheck.java index 4e261a40..8299952d 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParsingErrorCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParsingErrorCheck.java index 7c011bfc..86aa3364 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParsingErrorCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/ParsingErrorCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheck.java index 2d153d80..18108069 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheck.java index e59bbe83..472ad126 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheck.java index 0495528b..63f2d6df 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RecursionCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RecursionCheck.java index 8c4fea3b..f69b862f 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RecursionCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RecursionCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheck.java index 0da450bb..848e1271 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheck.java index 12b8c61c..11b4440b 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelectAllCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelectAllCheck.java index cdc519eb..08bd3bfb 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelectAllCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelectAllCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheck.java index fbb7f96c..4bc68df1 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SleepCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SleepCheck.java index d4e61386..e01f92ef 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SleepCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/SleepCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheck.java index f93dc919..7427e9b5 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/Tags.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/Tags.java index 8f3f017a..8f932b8d 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/Tags.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/Tags.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheck.java index d980a301..022f64a0 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheck.java index 352e9dd3..721c792c 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheck.java index fd056759..6461b7f1 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingCommentsCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingCommentsCheck.java index 00563bbf..6bdfa565 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingCommentsCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingCommentsCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingWhitespaceCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingWhitespaceCheck.java index e80003d9..250f8235 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingWhitespaceCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/TrailingWhitespaceCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheck.java index 70fafb15..d09f06f7 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheck.java index 0a676848..4fa8b499 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheck.java index 216a68a5..ed234f5d 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheck.java index 02f46a00..311c6aae 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheck.java index 281535f0..0401e2ec 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheck.java index ec0ee4df..b23c4f29 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheck.java index 8496f8e7..bf0a5c0d 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheck.java index e26f89bf..11fb38a6 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheck.java index 822c0a5a..fa4a0358 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheck.java index 8bbf116f..626701d3 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheck.java index 7bba2122..086cde3d 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheck.java index e93691e0..8d46acd8 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheck.java index 50a6ffcf..d50ab414 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheck.java index dcb7ed53..be79f513 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheck.java index d2342f78..80a7277b 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheck.java index a17221e4..a42b8368 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheck.java index 1c2fc7f2..f4682cd5 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheck.java b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheck.java index 5883f705..c99f97d9 100644 --- a/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheck.java +++ b/esql-checks/src/main/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheckTest.java index 186b2f7e..40c01155 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BinaryOperatorSeparatedBySpaceCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheckTest.java index e127dc3b..8303a820 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BlankLineBeforeCommentsCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheckTest.java index 49fb40b7..bbaa55e0 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanEqualityComparisonCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheckTest.java index 21218abe..4ce545c7 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanInversionCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheckTest.java index 2802e8df..59c867d4 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/BooleanLiteralCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheckTest.java index 5b0d65ad..eee4ce40 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CardinalityInLoopCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheckTest.java index 38af1659..baa9e5a9 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseAtLeastThreeWhenCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheckTest.java index 5900a1d2..f776059b 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithTooManyWhensCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheckTest.java index 2b6a60a8..4d8d971c 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CaseWithoutElseCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CheckListTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CheckListTest.java index 58602e16..10c9da51 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CheckListTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CheckListTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheckTest.java index 860a80a1..928e6ff6 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentRegularExpressionCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheckTest.java index 225549f8..a722fe45 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CommentedCodeCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheckTest.java index 7fb7f0a5..25d97861 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/CyclomaticComplexityCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheckTest.java index a4a79bcc..6841f38d 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeleteFromWithoutWhereCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheckTest.java index 1e1bf1de..c40c4b9f 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DeprecatedMethodCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheckTest.java index a636f21b..de814992 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/DuplicateConditionIfElseAndCaseWhensCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheckTest.java index c372e936..541b6e41 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ElseIfWithoutElseCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheckTest.java index 2417fe36..6f452241 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyBlockCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheckTest.java index 21e9ab09..26daf4f9 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyFileCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheckTest.java index 826a6449..960fa881 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EmptyMainFunctionCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EvalCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EvalCheckTest.java index e8bc47b6..b4bafa36 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EvalCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/EvalCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheckTest.java index 3a23bbbf..bf16fbf5 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FileHeaderCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheckTest.java index db325f4d..b71f44fb 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeHaveOnlyOneReturnCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheckTest.java index 55bfde07..1b7a8cba 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FilterNodeModifyMessageCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheckTest.java index 3e650503..a0515c52 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/FunctionProcedureLengthCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheckTest.java index 08925a45..01bc36bc 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardCodedCredentialsCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheckTest.java index 072dbd4b..b56a86cd 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedIpCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheckTest.java index 61881a66..ede91d2d 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/HardcodedURICheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheckTest.java index 5e4e864e..29302aa9 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IdenticalExpressionOnBinaryOperatorCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheckTest.java index 06c8286a..111386d4 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IfConditionalAlwaysTrueOrFalseCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheckTest.java index ff56142f..69f209a4 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InitializeVariablesCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheckTest.java index b5e95e10..ac923d1f 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/InsertBlankLineBetweenFuncProcCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheckTest.java index c4cd8138..0d2f6b6d 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/IterateStatementCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheckTest.java index b9b4d0a0..fcec16cc 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/KeyWordCaseCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LineLengthCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LineLengthCheckTest.java index b70e042e..13c22a43 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LineLengthCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LineLengthCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheckTest.java index 4ad54798..70f1ce73 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/LoopWithoutLeaveCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheckTest.java index 7e2fb1a1..566619cd 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/MissingNewlineAtEndOfFileCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheckTest.java index d8a56455..598bab9d 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NavigatingTreeCouldBeReferenceCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheckTest.java index 1482313e..453981e8 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NestedIfDepthCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheckTest.java index 448443c8..4b2bc4a4 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/NonReservedKeywordCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheckTest.java index 460fddff..a43dc7c5 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/OneStatementPerLineCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheckTest.java index a3fb5670..927258a9 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/ParameterWithDirectionCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheckTest.java index a342cc3b..b90813d7 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PassThruStatementCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheckTest.java index f6ba3c5d..01ab0869 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateConsistencyCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheckTest.java index ce6b1fb9..fb1983fa 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/PropagateToLabelCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RecursionCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RecursionCheckTest.java index 3a2a5009..f0261dc5 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RecursionCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RecursionCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheckTest.java index 256b656a..1dc595ad 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineCommentsCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheckTest.java index d082d536..ce6b3847 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/RoutineWithExcessiveReturnsCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelectAllCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelectAllCheckTest.java index 3cab44e4..76f861c3 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelectAllCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelectAllCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheckTest.java index bc8fa6da..21344a9d 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SelfAssignmentCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SleepCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SleepCheckTest.java index ccb3aed6..ea480c07 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SleepCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/SleepCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheckTest.java index 642f793d..a866509c 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/StringLiteralDuplicatedCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheckTest.java index 25408f93..aed927b9 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyIterateOrLeaveInLoopCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheckTest.java index a46d2793..45ab5a33 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyLinesInFileCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheckTest.java index 6b10e70f..e82b9f01 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/TooManyParametersCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheckTest.java index 0268da2e..5320c7a3 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedModuleCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheckTest.java index 7d8efced..abb005c7 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UndocumentedRoutineCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheckTest.java index 2e3df283..2b165bfc 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnknownMessageDomainCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheckTest.java index 0e0d1ac9..7aa15ca9 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnreachableCodeCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheckTest.java index 7fd4c8c6..573d191d 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedParameterCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheckTest.java index 700d535e..b6784ee7 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedRoutineCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheckTest.java index 3eeceb40..b4f868ee 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UnusedVariableCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheckTest.java index b14e3ec5..e4af42da 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UseBrokerSchemaCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheckTest.java index bf1a5ae4..d949731e 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/UselessParenthesesCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheckTest.java index 27a428c5..1ba3e03c 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/VariablesSubtreeCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheckTest.java index a6f1540a..2e689fac 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/XmlnscDomainCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheckTest.java index 9a607afa..162a9536 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ConstantNameCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheckTest.java index 3545fc90..603ba941 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FileNameCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheckTest.java index f3dc1789..350ab5f5 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/FunctionNameCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheckTest.java index 30baec36..22a97092 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ModuleNameCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheckTest.java index 0e14e020..91327ec1 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/ProcedureNameCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheckTest.java index a24cfa7d..f0ef5544 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/SubElementNameCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheckTest.java b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheckTest.java index 7e3a5b71..3e69d929 100644 --- a/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheckTest.java +++ b/esql-checks/src/test/java/com/exxeta/iss/sonar/esql/check/naming/VariableNameCheckTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/AbstractAnalyzer.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/AbstractAnalyzer.java index 8749d924..53742bb7 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/AbstractAnalyzer.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/AbstractAnalyzer.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtension.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtension.java index 71e8d1de..96365827 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtension.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtension.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodePosition.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodePosition.java index f3c4536d..eab4c39b 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodePosition.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/CodePosition.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ExecutionDataVisitor.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ExecutionDataVisitor.java index b48416aa..27283f00 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ExecutionDataVisitor.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ExecutionDataVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionData.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionData.java index d9073453..e3812546 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionData.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionData.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ModuleExecutionData.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ModuleExecutionData.java index 6728b12b..658738ae 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ModuleExecutionData.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/ModuleExecutionData.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReader.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReader.java index 64f926a9..79afa1f3 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReader.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReader.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceParser.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceParser.java index 99664679..f83f8407 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceParser.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceParser.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensor.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensor.java index d8f9d319..1ef781d0 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensor.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/InsertType.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/InsertType.java index cdf12c1b..20cfe90a 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/InsertType.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/InsertType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceLog.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceLog.java index d89eb9e8..e0ba65d7 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceLog.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceLog.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceType.java b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceType.java index a603bd33..d6d83f94 100644 --- a/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceType.java +++ b/esql-code-coverage/src/main/java/com/exxeta/iss/sonar/esql/trace/UserTraceType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtensionTest.java b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtensionTest.java index 01556f43..dce6de5e 100644 --- a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtensionTest.java +++ b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodeCoverageExtensionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodePositionTest.java b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodePositionTest.java index 8ced8d4f..f56c5a10 100644 --- a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodePositionTest.java +++ b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/CodePositionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionDataTest.java b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionDataTest.java index ad43bbbf..246fa26e 100644 --- a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionDataTest.java +++ b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/LineExecutionDataTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReaderTest.java b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReaderTest.java index 3476f72e..749b69d4 100644 --- a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReaderTest.java +++ b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceFileReaderTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensorTest.java b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensorTest.java index 6f527099..1d4a3ca5 100644 --- a/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensorTest.java +++ b/esql-code-coverage/src/test/java/com/exxeta/iss/sonar/esql/codecoverage/TraceSensorTest.java @@ -29,7 +29,7 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinition.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinition.java index 30272e2f..38d08173 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinition.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinition.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlCheck.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlCheck.java index 1a69f889..25c6b1b5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlCheck.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlNonReservedKeyword.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlNonReservedKeyword.java index 115aeb67..45062084 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlNonReservedKeyword.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlNonReservedKeyword.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlTokenType.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlTokenType.java index fd1d4eb6..a0041bc7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlTokenType.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/EsqlTokenType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Symbol.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Symbol.java index f4afdbd9..60c5d65a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Symbol.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Symbol.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModel.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModel.java index 43bbd756..41e051e4 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModel.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModel.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModelBuilder.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModelBuilder.java index ec96ce8f..bb2c97fb 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModelBuilder.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/SymbolModelBuilder.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Type.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Type.java index 1add2632..8b73c103 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Type.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Type.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/TypeSet.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/TypeSet.java index c1114b83..c12fbf5f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/TypeSet.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/TypeSet.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Usage.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Usage.java index f2e3f3d2..bd12232b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Usage.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/symbols/Usage.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/AsbitstreamFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/AsbitstreamFunctionTree.java index 99121ecd..7f9b43dd 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/AsbitstreamFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/AsbitstreamFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/BrokerSchemaStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/BrokerSchemaStatementTree.java index 81376ace..5010aeb7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/BrokerSchemaStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/BrokerSchemaStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTree.java index 6f2b41f7..bd3cceff 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DecimalDataTypeTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DecimalDataTypeTree.java index 33beafc6..b3fdab84 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DecimalDataTypeTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/DecimalDataTypeTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/EsqlContentsTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/EsqlContentsTree.java index 47f27dfd..eb0c1d7b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/EsqlContentsTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/EsqlContentsTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTree.java index b07e8ae3..9eada5bb 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IndexTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IndexTree.java index 5de95bff..9939a663 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IndexTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IndexTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalDataTypeTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalDataTypeTree.java index 5acc4857..83728fb4 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalDataTypeTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalDataTypeTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalQualifierTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalQualifierTree.java index 537d6977..b79a94f4 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalQualifierTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/IntervalQualifierTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ModuleTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ModuleTree.java index a2694427..3278160c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ModuleTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ModuleTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/NamespaceTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/NamespaceTree.java index 50c9e7d8..12ae1f79 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/NamespaceTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/NamespaceTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathClauseTree.java index 631260ae..a6a6ffd8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNameTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNameTree.java index 32fe25b8..70bfcf2b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNameTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNameTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNamespaceTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNamespaceTree.java index 8b07acb2..dc593826 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNamespaceTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementNamespaceTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTree.java index 11c8ff84..e848493d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTypeTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTypeTree.java index c44289cf..4ec727ab 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTypeTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/PathElementTypeTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ProgramTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ProgramTree.java index 5ff6dbc7..ca2cb8a5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ProgramTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/ProgramTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/RoutineDeclarationTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/RoutineDeclarationTree.java index 1501cd83..6bfc5f84 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/RoutineDeclarationTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/RoutineDeclarationTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/SchemaNameTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/SchemaNameTree.java index fbf28639..d748c8b7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/SchemaNameTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/SchemaNameTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/Tree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/Tree.java index 891324f7..af30fd42 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/Tree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/Tree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTree.java index 99cb8ec3..ab87f6cd 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BinaryExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BinaryExpressionTree.java index ff1576ca..5b8043a5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BinaryExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/BinaryExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/CallExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/CallExpressionTree.java index 728f59b5..ad0a7995 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/CallExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/CallExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTree.java index b98b2597..0c9ca1e1 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IdentifierTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IdentifierTree.java index b57103ac..0a439484 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IdentifierTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IdentifierTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTree.java index 8e7430c4..2b1ef856 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IntervalExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IntervalExpressionTree.java index 11a4bf54..bd02acf9 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IntervalExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IntervalExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTree.java index 2d234eee..c4ccb174 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTree.java index 94bfac7f..ebf78c50 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ParenthesisedExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ParenthesisedExpressionTree.java index c37a6f97..e9da3036 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ParenthesisedExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/ParenthesisedExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTree.java index c827f2a8..8a23321b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/VariableReferenceTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/VariableReferenceTree.java index b729d788..6611faa8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/VariableReferenceTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/expression/VariableReferenceTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedExpressionTree.java index ccddddd4..3d3b29cc 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedFieldReferenceTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedFieldReferenceTree.java index 272dd56f..ffdee08d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedFieldReferenceTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/AliasedFieldReferenceTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTree.java index 04ee8a29..28480cf7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTree.java index 2a6e2fe0..019d1bb8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ComplexFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ComplexFunctionTree.java index 6069fc07..3a8a787d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ComplexFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ComplexFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/DateTimeFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/DateTimeFunctionTree.java index 34108aaf..bb875865 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/DateTimeFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/DateTimeFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTree.java index 2b71417e..efdb6c83 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FieldFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FieldFunctionTree.java index ca784d51..61380425 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FieldFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FieldFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTree.java index dedd7538..bfd915c1 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FromClauseExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FromClauseExpressionTree.java index 47863fa8..9ef4ec95 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FromClauseExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FromClauseExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FunctionTree.java index f71d06e5..629e303f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/FunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTree.java index 7338cc1c..f00dedca 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListFunctionTree.java index b0d1de32..2f3eac9a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/ListFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/MiscellaneousFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/MiscellaneousFunctionTree.java index bbb21899..531dca1d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/MiscellaneousFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/MiscellaneousFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/NumericFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/NumericFunctionTree.java index 126dcd58..1ffb33eb 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/NumericFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/NumericFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTree.java index ddc2e078..d0d16cf1 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTree.java index 440f4dd8..327b9377 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTree.java index eb13b7de..99510cad 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTree.java index a7c97c88..a531261c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTree.java index 1ecd3a5e..2318f797 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectClauseTree.java index 5d7770f6..b49ad39f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTree.java index bacf5d7c..162f1c1b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/StringManipulationFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/StringManipulationFunctionTree.java index ef6250e7..173020f5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/StringManipulationFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/StringManipulationFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTree.java index 2c05fb93..0b6e3336 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTree.java index d1f3a82b..cafefe69 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTree.java index 4efefc4d..5acd903c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhenClauseExpressionTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhenClauseExpressionTree.java index 8ceff409..afb377cd 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhenClauseExpressionTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhenClauseExpressionTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhereClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhereClauseTree.java index c5933410..1cfa6058 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhereClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/function/WhereClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxToken.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxToken.java index 32e7d3b3..cad93799 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxToken.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxToken.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxTrivia.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxTrivia.java index e7a22996..44905b47 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxTrivia.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/lexical/SyntaxTrivia.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTree.java index 4a2a1eb7..5eed3d1d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTree.java index d2de4359..b823da4c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTree.java index 35fe595c..27e76f90 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTree.java index cf11af5b..01f21d62 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ControlsTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ControlsTree.java index c9458c15..d55e35f6 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ControlsTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ControlsTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateFunctionStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateFunctionStatementTree.java index 54ea3876..d50fd4f8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateFunctionStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateFunctionStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateModuleStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateModuleStatementTree.java index f923c2bb..18a43a40 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateModuleStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateModuleStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateProcedureStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateProcedureStatementTree.java index cbd39ec6..027908de 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateProcedureStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateProcedureStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTree.java index 75199aa1..471abcc5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTree.java index b2a9b275..bd4e4034 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTree.java index db86cade..b9adbd55 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTree.java index 5085e225..11324dab 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTree.java index 11a61b59..20cdf78b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTree.java index a9e563b9..946e274b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseClauseTree.java index 596bc41d..3941faae 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseifClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseifClauseTree.java index d880bc73..a6f77414 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseifClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ElseifClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTree.java index 6e948376..fbc76981 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ExternalRoutineBodyTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ExternalRoutineBodyTree.java index 52111102..88489dba 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ExternalRoutineBodyTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ExternalRoutineBodyTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTree.java index 515c5f94..8160ae48 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/FromClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/FromClauseTree.java index 193592ec..4ae96a5b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/FromClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/FromClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTree.java index a2bac84e..473be916 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTree.java index c6e2e3b3..ff23f16d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTree.java index 967ab67f..1802baeb 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/JavaClassloaderServiceTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/JavaClassloaderServiceTree.java index 9f608652..9d3c3c7a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/JavaClassloaderServiceTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/JavaClassloaderServiceTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LabelTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LabelTree.java index 173bc47b..f75ebe19 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LabelTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LabelTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LanguageTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LanguageTree.java index 099d6396..2069dbf5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LanguageTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LanguageTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTree.java index ece1e98c..de8c20af 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTree.java index 675988c2..0a24beeb 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTree.java index dafdefdc..4f21d0ae 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MessageSourceTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MessageSourceTree.java index 35d76611..786bc278 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MessageSourceTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MessageSourceTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTree.java index 85b8671b..50d4dc16 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/NameClausesTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/NameClausesTree.java index a2d373d2..b69a70b6 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/NameClausesTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/NameClausesTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterListTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterListTree.java index fd162495..b030919f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterListTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterListTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTree.java index e58872c5..74a0c40a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParseClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParseClauseTree.java index 13b17579..c1a17547 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParseClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParseClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTree.java index 5de9f649..a6591946 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTree.java index 4424c7d8..c67c19d0 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatClauseTree.java index d3ec8a1e..d582fa43 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTree.java index 8a274af4..ee9553ca 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTree.java index 9b99eceb..583aba44 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResultSetTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResultSetTree.java index df4dbfe0..d70b2bae 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResultSetTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResultSetTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTree.java index dc7030b0..d8f294ed 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnTypeTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnTypeTree.java index a4f85df4..3e7f5684 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnTypeTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnTypeTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RoutineBodyTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RoutineBodyTree.java index 38a1ab70..ed585f88 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RoutineBodyTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/RoutineBodyTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetColumnTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetColumnTree.java index ee83d7df..f381265d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetColumnTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetColumnTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTree.java index 6e8ba832..db4cc6e9 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SqlStateTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SqlStateTree.java index 8c7e8252..a426b873 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SqlStateTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/SqlStateTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementTree.java index c660020f..52470c12 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementsTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementsTree.java index 20551d4b..81112b01 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementsTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/StatementsTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTree.java index e86e6a93..07152139 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTree.java index d8860536..31b4e74a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ValuesClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ValuesClauseTree.java index 7696aa32..10557d18 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ValuesClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/ValuesClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhenClauseTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhenClauseTree.java index 24854855..b7a4bc44 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhenClauseTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhenClauseTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTree.java index 263cacbe..2b83474d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/symbols/type/TypableTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/symbols/type/TypableTree.java index 20ea6454..e3832214 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/symbols/type/TypableTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/tree/symbols/type/TypableTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitor.java index e8e860eb..884dd162 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorCheck.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorCheck.java index 7334f6ef..4bafeec8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorCheck.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlFile.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlFile.java index ee9b7a96..3afe7410 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlFile.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlFile.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlVisitorContext.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlVisitorContext.java index 8a3e74f5..ec27b81f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlVisitorContext.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/EsqlVisitorContext.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/FileIssue.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/FileIssue.java index fc32cd9a..8b4a31ca 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/FileIssue.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/FileIssue.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issue.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issue.java index 522d0a94..5c5ee206 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issue.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issue.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocation.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocation.java index fd343ea7..9753e5c9 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocation.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocation.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issues.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issues.java index d1f18ad4..047dc450 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issues.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/Issues.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/LineIssue.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/LineIssue.java index 5d80a062..1c9f1978 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/LineIssue.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/LineIssue.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/PreciseIssue.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/PreciseIssue.java index 7abf9fb7..00272b97 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/PreciseIssue.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/PreciseIssue.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitor.java index 25e47967..29543380 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitorCheck.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitorCheck.java index c6a718af..c15b8e4c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitorCheck.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/SubscriptionVisitorCheck.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitor.java index b018fecb..f2109a98 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitorContext.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitorContext.java index 28aebec1..8ee1397a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitorContext.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/api/visitors/TreeVisitorContext.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitor.java index e8a02215..18747e11 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilder.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilder.java index 85961a45..b70fb033 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilder.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilder.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitor.java index 3901f2f7..16248d0d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlLexer.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlLexer.java index 8b3ec83a..f82393aa 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlLexer.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlLexer.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuator.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuator.java index fc5723cb..2f803527 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuator.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuator.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlReservedKeyword.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlReservedKeyword.java index c95ff7e7..314937be 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlReservedKeyword.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlReservedKeyword.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenType.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenType.java index 28907c9e..a3349dda 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenType.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CommentLineVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CommentLineVisitor.java index 288ade32..b99c465c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CommentLineVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CommentLineVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ComplexityVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ComplexityVisitor.java index f3ed2f17..296b9849 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ComplexityVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ComplexityVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CounterVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CounterVisitor.java index 6d266c21..7cb1601c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CounterVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/CounterVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/EsqlMetrics.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/EsqlMetrics.java index b4afb3b3..b9353105 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/EsqlMetrics.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/EsqlMetrics.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ExecutableLineVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ExecutableLineVisitor.java index 6bcc704b..ce0c7692 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ExecutableLineVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/ExecutableLineVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/LineVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/LineVisitor.java index bc75eedb..d279a3d5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/LineVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/LineVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitor.java index 16040ee3..f7658f2e 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlGrammar.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlGrammar.java index 04df894e..fbe5eede 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlGrammar.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlGrammar.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlLegacyGrammar.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlLegacyGrammar.java index daaf0afd..2149a2f0 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlLegacyGrammar.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlLegacyGrammar.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlNodeBuilder.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlNodeBuilder.java index cde69024..bea91689 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlNodeBuilder.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlNodeBuilder.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParser.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParser.java index 5c1773e4..cfb2cdcb 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParser.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParser.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParserBuilder.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParserBuilder.java index 822e0f4b..21535c24 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParserBuilder.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/EsqlParserBuilder.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/TreeFactory.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/TreeFactory.java index e9a4e586..b093970d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/TreeFactory.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/parser/TreeFactory.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/EsqlCommentAnalyser.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/EsqlCommentAnalyser.java index b896c372..ab9afbaa 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/EsqlCommentAnalyser.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/EsqlCommentAnalyser.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/Kinds.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/Kinds.java index 37979a24..429e046b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/Kinds.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/Kinds.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalence.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalence.java index f3fe78c5..d079d96e 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalence.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalence.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/declaration/BindingElementTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/declaration/BindingElementTree.java index a0032daa..d6de7ba0 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/declaration/BindingElementTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/declaration/BindingElementTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LikeExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LikeExpressionTreeImpl.java index f1d3aaaf..1047a486 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LikeExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LikeExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LiteralTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LiteralTree.java index 089c7387..7af00586 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LiteralTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/expression/LiteralTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/EsqlTree.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/EsqlTree.java index 34d4551b..01ac36ee 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/EsqlTree.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/EsqlTree.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/SeparatedList.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/SeparatedList.java index 30a56062..7205cc98 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/SeparatedList.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/SeparatedList.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/BrokerSchemaStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/BrokerSchemaStatementTreeImpl.java index 22b5a8f5..7467a6e9 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/BrokerSchemaStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/BrokerSchemaStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DataTypeTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DataTypeTreeImpl.java index ad4805fb..5667b003 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DataTypeTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DataTypeTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DecimalDataTypeTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DecimalDataTypeTreeImpl.java index 990b8268..a04ea1fd 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DecimalDataTypeTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/DecimalDataTypeTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/EsqlContentsTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/EsqlContentsTreeImpl.java index bbcea000..3c163934 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/EsqlContentsTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/EsqlContentsTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/FieldReferenceTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/FieldReferenceTreeImpl.java index 330b6e47..410d837c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/FieldReferenceTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/FieldReferenceTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IndexTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IndexTreeImpl.java index d35167ce..15fbe31c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IndexTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IndexTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalDataTypeTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalDataTypeTreeImpl.java index c3d0c030..9d32d73f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalDataTypeTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalDataTypeTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalQualifierTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalQualifierTreeImpl.java index f420cea5..31618cb0 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalQualifierTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/IntervalQualifierTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/NamespaceTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/NamespaceTreeImpl.java index f2359ea7..15fb5634 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/NamespaceTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/NamespaceTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ParameterListTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ParameterListTreeImpl.java index fee860d8..9f7bccc7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ParameterListTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ParameterListTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathClauseTreeImpl.java index 9ef6acc1..d622c51b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNameTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNameTreeImpl.java index 9fd49b7a..69371876 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNameTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNameTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNamespaceTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNamespaceTreeImpl.java index a00ead2d..9a6c0289 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNamespaceTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementNamespaceTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTreeImpl.java index 15f6bd31..044c8309 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTypeTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTypeTreeImpl.java index 7cc524e9..1d2d8a67 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTypeTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/PathElementTypeTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ProgramTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ProgramTreeImpl.java index f8d9b7a2..d5fcb939 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ProgramTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/ProgramTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/SchemaNameTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/SchemaNameTreeImpl.java index bc2c425d..7fecfef0 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/SchemaNameTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/declaration/SchemaNameTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BetweenExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BetweenExpressionTreeImpl.java index ef1c9af9..cc67680f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BetweenExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BetweenExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BinaryExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BinaryExpressionTreeImpl.java index 195b3321..ef4cb674 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BinaryExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/BinaryExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/CallExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/CallExpressionTreeImpl.java index 25a85b43..7ea6b8d0 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/CallExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/CallExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IdentifierTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IdentifierTreeImpl.java index 7b8b6ce3..c8d5a9b8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IdentifierTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IdentifierTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/InExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/InExpressionTreeImpl.java index 9a4b4ced..e49d977f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/InExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/InExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IntervalExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IntervalExpressionTreeImpl.java index c36ddcbb..e9e1f2ef 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IntervalExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IntervalExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IsExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IsExpressionTreeImpl.java index e9a41dd0..4492f2bd 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IsExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/IsExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/LiteralTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/LiteralTreeImpl.java index b3d4801a..be1b950b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/LiteralTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/LiteralTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/ParenthesisedExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/ParenthesisedExpressionTreeImpl.java index 33b726a4..fbdcf51a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/ParenthesisedExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/ParenthesisedExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/PrefixExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/PrefixExpressionTreeImpl.java index 19147cdb..80ef07af 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/PrefixExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/expression/PrefixExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedExpressionTreeImpl.java index 8a56b5ff..d800aa91 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedFieldReferenceTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedFieldReferenceTreeImpl.java index 44b34408..30046a04 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedFieldReferenceTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AliasedFieldReferenceTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AsbitstreamFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AsbitstreamFunctionTreeImpl.java index 94531fd5..92de7ed7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AsbitstreamFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/AsbitstreamFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CaseFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CaseFunctionTreeImpl.java index 368ce154..37d88556 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CaseFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CaseFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CastFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CastFunctionTreeImpl.java index 8fac4e2a..034263ad 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CastFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/CastFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ExtractFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ExtractFunctionTreeImpl.java index 66cdb24f..0ac6f419 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ExtractFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ExtractFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ForFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ForFunctionTreeImpl.java index 3ad0784a..a5f01e84 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ForFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ForFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/FromClauseExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/FromClauseExpressionTreeImpl.java index 753e18a3..ce3e89b6 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/FromClauseExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/FromClauseExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ListConstructorFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ListConstructorFunctionTreeImpl.java index b67e6db4..a8dc559c 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ListConstructorFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/ListConstructorFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/OverlayFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/OverlayFunctionTreeImpl.java index 7c1e0e19..93bb3b66 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/OverlayFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/OverlayFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PassthruFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PassthruFunctionTreeImpl.java index eff51754..ca02c491 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PassthruFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PassthruFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PositionFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PositionFunctionTreeImpl.java index 949ecb64..58d81f77 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PositionFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/PositionFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RoundFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RoundFunctionTreeImpl.java index 8445668a..d0a595a4 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RoundFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RoundFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RowConstructorFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RowConstructorFunctionTreeImpl.java index cc212f5d..35799162 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RowConstructorFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/RowConstructorFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectClauseTreeImpl.java index a43b395e..dfda0a96 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectFunctionTreeImpl.java index 6da4e55b..f1161d88 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SelectFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SubstringFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SubstringFunctionTreeImpl.java index 44ee72bb..470b3741 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SubstringFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/SubstringFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TheFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TheFunctionTreeImpl.java index 60e0575c..f4ef6ada 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TheFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TheFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TrimFunctionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TrimFunctionTreeImpl.java index 2517ab1d..2a7f1500 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TrimFunctionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/TrimFunctionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhenClauseExpressionTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhenClauseExpressionTreeImpl.java index fa0abb7e..ee775df3 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhenClauseExpressionTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhenClauseExpressionTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhereClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhereClauseTreeImpl.java index 29018c9b..23f7d80e 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhereClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/function/WhereClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxToken.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxToken.java index 6b62dbf2..16d69eb7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxToken.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxToken.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxTrivia.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxTrivia.java index 0ce35862..d19fd8b7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxTrivia.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/lexical/InternalSyntaxTrivia.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/AttachStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/AttachStatementTreeImpl.java index 2c47b593..d561dad2 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/AttachStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/AttachStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/BeginEndStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/BeginEndStatementTreeImpl.java index 3aa0c8f6..8d02b842 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/BeginEndStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/BeginEndStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CallStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CallStatementTreeImpl.java index 44116bc2..6044dcb7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CallStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CallStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CaseStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CaseStatementTreeImpl.java index 24b5a11a..6c6f3552 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CaseStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CaseStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ControlsTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ControlsTreeImpl.java index 632c0823..93527c14 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ControlsTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ControlsTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateFunctionStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateFunctionStatementTreeImpl.java index 11108fd4..741cdb7e 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateFunctionStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateFunctionStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateModuleStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateModuleStatementTreeImpl.java index 1872b291..cd3f85c1 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateModuleStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateModuleStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateProcedureStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateProcedureStatementTreeImpl.java index b48503eb..380ac9ec 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateProcedureStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateProcedureStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateRoutineTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateRoutineTreeImpl.java index 12fdb3d0..a8baa271 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateRoutineTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateRoutineTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateStatementTreeImpl.java index f0bb18c3..1f3a8c49 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/CreateStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareHandlerStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareHandlerStatementTreeImpl.java index f1222552..9fd31984 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareHandlerStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareHandlerStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareStatementTreeImpl.java index 18194fcf..b49234b7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeclareStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteFromStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteFromStatementTreeImpl.java index 1eaddbb2..c7bf9523 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteFromStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteFromStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteStatementTreeImpl.java index 6961343d..13ae1a4f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DeleteStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DetachStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DetachStatementTreeImpl.java index 3d00efed..72cf56c2 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DetachStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/DetachStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseClauseTreeImpl.java index 3a58d4ac..a469b8ee 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseifClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseifClauseTreeImpl.java index 48daa876..ab380c0d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseifClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ElseifClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/EvalStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/EvalStatementTreeImpl.java index afd5ca36..61abb172 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/EvalStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/EvalStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ExternalRoutineBodyTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ExternalRoutineBodyTreeImpl.java index 8008d135..c07d8305 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ExternalRoutineBodyTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ExternalRoutineBodyTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ForStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ForStatementTreeImpl.java index 4c14f8b8..2e6f385d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ForStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ForStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/FromClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/FromClauseTreeImpl.java index ab29c25d..f3bad9e7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/FromClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/FromClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IfStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IfStatementTreeImpl.java index 2f593f4a..fec25dda 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IfStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IfStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/InsertStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/InsertStatementTreeImpl.java index 42b1a00d..23df9762 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/InsertStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/InsertStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IterateStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IterateStatementTreeImpl.java index 3e1247cd..44181593 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IterateStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/IterateStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/JavaClassloaderServiceTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/JavaClassloaderServiceTreeImpl.java index 61f71f0b..9b31c2fa 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/JavaClassloaderServiceTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/JavaClassloaderServiceTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LabelTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LabelTreeImpl.java index 054d94e5..c9d43cda 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LabelTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LabelTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LanguageTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LanguageTreeImpl.java index 501db9e9..36fc6140 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LanguageTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LanguageTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LeaveStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LeaveStatementTreeImpl.java index 34662d83..e6ef70a8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LeaveStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LeaveStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LogStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LogStatementTreeImpl.java index c0179165..14b191c5 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LogStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LogStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LoopStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LoopStatementTreeImpl.java index d12ad975..df116955 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LoopStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/LoopStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MessageSourceTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MessageSourceTreeImpl.java index 4430b5d6..9d545dce 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MessageSourceTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MessageSourceTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MoveStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MoveStatementTreeImpl.java index e610f86a..c4747446 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MoveStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/MoveStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/NameClausesTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/NameClausesTreeImpl.java index 3ebbc42e..52cdab60 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/NameClausesTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/NameClausesTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParameterTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParameterTreeImpl.java index 2e1d633b..de8738f3 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParameterTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParameterTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParseClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParseClauseTreeImpl.java index 6b5fe432..d2a1c6d0 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParseClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ParseClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PassthruStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PassthruStatementTreeImpl.java index cd2772d5..330ed0e9 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PassthruStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PassthruStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PropagateStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PropagateStatementTreeImpl.java index 6b9f6946..c45a7e76 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PropagateStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/PropagateStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatClauseTreeImpl.java index 51565c3b..2f4965e9 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatStatementTreeImpl.java index 884ea202..31ceaeaa 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RepeatStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResignalStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResignalStatementTreeImpl.java index 39de1e25..239247b1 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResignalStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResignalStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResultSetTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResultSetTreeImpl.java index 14fb9f2e..c59d1f25 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResultSetTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ResultSetTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnStatementTreeImpl.java index 33a6b2e6..e9b8f224 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnTypeTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnTypeTreeImpl.java index 2d69a577..2590efe6 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnTypeTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ReturnTypeTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RoutineBodyTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RoutineBodyTreeImpl.java index b4432f62..a118c012 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RoutineBodyTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/RoutineBodyTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetColumnTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetColumnTreeImpl.java index e7aff627..a8a83d92 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetColumnTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetColumnTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetStatementTreeImpl.java index 2e0afed6..b535323a 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SetStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SqlStateTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SqlStateTreeImpl.java index a01a9e88..aca0c6a7 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SqlStateTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/SqlStateTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/StatementsTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/StatementsTreeImpl.java index 135cec6d..d6164649 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/StatementsTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/StatementsTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ThrowStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ThrowStatementTreeImpl.java index bc6ac211..ae277c01 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ThrowStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ThrowStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/UpdateStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/UpdateStatementTreeImpl.java index 74585164..92d800a9 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/UpdateStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/UpdateStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ValuesClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ValuesClauseTreeImpl.java index fb73226f..ffed8b55 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ValuesClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/ValuesClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhenClauseTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhenClauseTreeImpl.java index 36265d37..4bf988b8 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhenClauseTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhenClauseTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhileStatementTreeImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhileStatementTreeImpl.java index 9eaae383..c9268db4 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhileStatementTreeImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/impl/statement/WhileStatementTreeImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/HoistedSymbolVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/HoistedSymbolVisitor.java index ab634b50..71c8efef 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/HoistedSymbolVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/HoistedSymbolVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Scope.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Scope.java index 5c4ed9cc..84a8c6af 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Scope.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Scope.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeVisitor.java index ff94ce9e..2f99af9d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolModelImpl.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolModelImpl.java index 54955c4e..acb7b62f 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolModelImpl.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolModelImpl.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolVisitor.java index 8e21fa6d..637b1dcf 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/SymbolVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Type.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Type.java index 7114b4ed..8d01084d 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Type.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/Type.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/FunctionType.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/FunctionType.java index e0e37803..4e7784af 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/FunctionType.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/FunctionType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveOperations.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveOperations.java index 022e4c93..199cda66 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveOperations.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveOperations.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveType.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveType.java index 242a088d..98504645 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveType.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/PrimitiveType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/ProcedureType.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/ProcedureType.java index 93c9572d..bab2a978 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/ProcedureType.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/ProcedureType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/RoutineType.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/RoutineType.java index 6c3315f7..81dd9122 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/RoutineType.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/RoutineType.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/TypeVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/TypeVisitor.java index 1705ef2e..89e44624 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/TypeVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/symbols/type/TypeVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/visitors/CharsetAwareVisitor.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/visitors/CharsetAwareVisitor.java index 7c628242..6f84410b 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/visitors/CharsetAwareVisitor.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/tree/visitors/CharsetAwareVisitor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/utils/LiteralUtils.java b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/utils/LiteralUtils.java index 991dfdd7..6d491b55 100644 --- a/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/utils/LiteralUtils.java +++ b/esql-frontend/src/main/java/com/exxeta/iss/sonar/esql/utils/LiteralUtils.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinitionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinitionTest.java index 282af2c5..3aa1037a 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinitionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/CustomEsqlRulesDefinitionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/IssueTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/IssueTest.java index 27ed5763..4e669a26 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/IssueTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/IssueTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/TypeSetTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/TypeSetTest.java index f68a69f3..f4a7a5f0 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/TypeSetTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/TypeSetTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ArgumentListTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ArgumentListTest.java index 54d07e51..b3ca735b 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ArgumentListTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ArgumentListTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateProcedureTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateProcedureTest.java index 06961831..6c1e707c 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateProcedureTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateProcedureTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateRoutineTreeImplTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateRoutineTreeImplTest.java index fbbc3c1d..2305e50d 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateRoutineTreeImplTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateRoutineTreeImplTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTest.java index eadb7031..72c2adc1 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/DataTypeTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTest.java index 84a739df..79b7ccf0 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/FieldReferenceTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/IdentifierTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/IdentifierTest.java index b94981ff..352690a0 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/IdentifierTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/IdentifierTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/KeywordTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/KeywordTest.java index cd664a0d..c98f7305 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/KeywordTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/KeywordTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ReturnTypeTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ReturnTypeTest.java index 6a9c1aa8..da0ba526 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ReturnTypeTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/ReturnTypeTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SeparatedListTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SeparatedListTest.java index 225d7d63..be3a4ef3 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SeparatedListTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SeparatedListTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SpacingTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SpacingTest.java index 3e396660..f54d01c2 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SpacingTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/SpacingTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTest.java index 422ad44d..10ab24d4 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/BetweenExpressionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTest.java index cb923c01..04c60d91 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/ExpressionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTest.java index 9dcc9bba..21ce8031 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/InExpressionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTest.java index 40014270..79b9e59c 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/IsExpressionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTest.java index 38014d92..ef25b974 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LikeExpressionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LiteralTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LiteralTest.java index f78f20f5..fe59805c 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LiteralTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/LiteralTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/PrimaryExpressionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/PrimaryExpressionTest.java index d2a8e487..bbdfcd6c 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/PrimaryExpressionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/PrimaryExpressionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTest.java index cfc2e435..b6e81358 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/expression/UnaryExpressionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/AsbitstreamFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/AsbitstreamFunctionTest.java index 093c9204..30b0ea17 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/AsbitstreamFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/AsbitstreamFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTest.java index 89c19114..69614a2c 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CaseFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTest.java index 81ad14e4..50d13776 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CastFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CreateFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CreateFunctionTest.java index f8c2f4b5..fb7ed640 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CreateFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/CreateFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTest.java index b4c5062a..42a4fe9f 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ExtractFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTest.java index 149bb59b..2c11bd85 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ForFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTest.java index 6ae9647e..ced0ca58 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/ListConstructorFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTest.java index 562ab8ad..b4610294 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/OverlayFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTest.java index 5c4e84f1..4c3e7afb 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PassthruFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTest.java index e37a9789..ba54e816 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/PositionFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTest.java index 27d49afa..14d0efca 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RoundFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTest.java index 6b06c465..73ec863f 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/RowConstructorFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTest.java index 351caac9..bdbb0e07 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SelectFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTest.java index f2838341..77d80a1e 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/SubstringFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTest.java index 6cc885ea..b5afe543 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TheFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTest.java index 51a8ce0d..4217d5f5 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/function/TrimFunctionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTest.java index 3128b7cc..5a8c1dca 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/AttachStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTest.java index d24b25e5..dc6b7b6e 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/BeginEndStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTest.java index a601fc5b..c62b8505 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CallStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTest.java index 1aeb324c..83c3d920 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CaseStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTest.java index 6fd65f16..844336ad 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/CreateStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTest.java index 03d44eb8..d0b9089a 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareHandlerStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTest.java index 034cc938..e3530e88 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeclareStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTest.java index a3d2893e..a989535b 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteFromStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTest.java index 95a272be..ad0ca6fa 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DeleteStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTest.java index 745c3450..7e8667b5 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/DetachStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTest.java index 1fb09a8f..4f3a43d5 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/EvalStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTest.java index 02f36820..bb3341fb 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ForStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTest.java index 4da48142..4d31e5ef 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IfStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTest.java index 1d2052f4..0e312d58 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/InsertStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTest.java index 1322459d..849c06c6 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/IterateStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTest.java index 50032ff8..a9fb053b 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LeaveStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTest.java index 6568f574..3d4c8c2a 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LogStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTest.java index 452a21dd..a4be2eb3 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/LoopStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTest.java index 30fe80fd..81e14825 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/MoveStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTreeTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTreeTest.java index 07eefa3b..ef26ca2e 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTreeTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ParameterTreeTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTest.java index 0b167b40..080b65ee 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PassthruStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTest.java index b7fee64a..6f0edacf 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/PropagateStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTest.java index 1b44307c..a45559a3 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/RepeatStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTest.java index de7618de..4f32a6ad 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ResignalStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTest.java index e5d7e580..bc1a73a5 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ReturnStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SemicolonTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SemicolonTest.java index d0c9201f..44049efe 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SemicolonTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SemicolonTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTest.java index 6d6b5547..284b0861 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/SetStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTest.java index ed6b8ea5..523097da 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/ThrowStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTest.java index acc61f0e..ff48a5db 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/UpdateStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTest.java index 7ba7b1ec..1f2ee4d1 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/statement/WhileStatementTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/SymbolModelImplTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/SymbolModelImplTest.java index ea1b2448..f3d9bc3b 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/SymbolModelImplTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/SymbolModelImplTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/RoutineTypeTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/RoutineTypeTest.java index 5277be59..2baa7eb8 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/RoutineTypeTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/RoutineTypeTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/TypeTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/TypeTest.java index a787264d..f157a953 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/TypeTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/symbol/type/TypeTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorTest.java index 73df1a35..061afdb8 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/DoubleDispatchVisitorTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocationTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocationTest.java index 5157167a..27b2c2c4 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocationTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/visitors/IssueLocationTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitorTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitorTest.java index 6a980380..d8946269 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitorTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/cpd/CpdVisitorTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilderTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilderTest.java index 7ddb1397..2c970ae7 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilderTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlightSymbolTableBuilderTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitorTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitorTest.java index c7cb2f2d..435ea446 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitorTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/highlighter/HighlighterVisitorTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlKeywordTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlKeywordTest.java index 8d28ca0f..0cc2f0ba 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlKeywordTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlKeywordTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuatorTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuatorTest.java index 90de3d8a..90f80041 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuatorTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlPunctuatorTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenTypeTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenTypeTest.java index 5e2ba6b4..76b3cd76 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenTypeTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/lexer/EsqlTokenTypeTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsTest.java index c7d47811..c3e9e0c3 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitorTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitorTest.java index 2481c7c6..e197553e 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitorTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/metrics/MetricsVisitorTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/parser/ParserTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/parser/ParserTest.java index 4aefe153..6efefa83 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/parser/ParserTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/parser/ParserTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalenceTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalenceTest.java index f2a322eb..bf211b23 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalenceTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/SyntacticEquivalenceTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeTest.java index 85666339..ee662d91 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/tree/symbols/ScopeTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/Assertions.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/Assertions.java index bb4eb85f..50b61a37 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/Assertions.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/Assertions.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/EsqlTreeModelTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/EsqlTreeModelTest.java index f15dda5d..68705935 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/EsqlTreeModelTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/EsqlTreeModelTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/LegacyParserTest.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/LegacyParserTest.java index e5814f92..7c4a12b9 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/LegacyParserTest.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/LegacyParserTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/SourceBuilder.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/SourceBuilder.java index cff1a9bf..dfd20ea7 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/SourceBuilder.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/SourceBuilder.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/TestUtils.java b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/TestUtils.java index 604e099f..ad013e47 100644 --- a/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/TestUtils.java +++ b/esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/utils/TestUtils.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/CancellationException.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/CancellationException.java index 9d6a531a..3991efc3 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/CancellationException.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/CancellationException.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlChecks.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlChecks.java index 140942a9..f19be64f 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlChecks.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlChecks.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlExclusionsFileFilter.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlExclusionsFileFilter.java index a9126c99..8e8489e7 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlExclusionsFileFilter.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlExclusionsFileFilter.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlLanguage.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlLanguage.java index 49224bca..86d35071 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlLanguage.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlLanguage.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlPlugin.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlPlugin.java index 4105320c..279d30fd 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlPlugin.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlPlugin.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinition.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinition.java index 2f9d3e79..f7d7dec5 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinition.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinition.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlRulesDefinition.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlRulesDefinition.java index 9e5acee9..51c70e5b 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlRulesDefinition.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlRulesDefinition.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlSensor.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlSensor.java index ed5c3c71..58f3fc70 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlSensor.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/EsqlSensor.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/JsonProfileReader.java b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/JsonProfileReader.java index 1475e4a1..8bfb7eb7 100644 --- a/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/JsonProfileReader.java +++ b/esql-plugin/src/main/java/com/exxeta/iss/sonar/esql/JsonProfileReader.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlLanguageTest.java b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlLanguageTest.java index f214f46f..b09a9154 100644 --- a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlLanguageTest.java +++ b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlLanguageTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlPluginTest.java b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlPluginTest.java index 7c057e14..dbc4066c 100644 --- a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlPluginTest.java +++ b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlPluginTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinitionTest.java b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinitionTest.java index 99930a60..d04bb426 100644 --- a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinitionTest.java +++ b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlProfilesDefinitionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlSensorTest.java b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlSensorTest.java index 184f2101..29a850f2 100644 --- a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlSensorTest.java +++ b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/EsqlSensorTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/rules/EsqlRulesDefinitionTest.java b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/rules/EsqlRulesDefinitionTest.java index b12c5b98..e1927d95 100644 --- a/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/rules/EsqlRulesDefinitionTest.java +++ b/esql-plugin/src/test/java/com/exxeta/iss/sonar/esql/rules/EsqlRulesDefinitionTest.java @@ -1,6 +1,6 @@ /* * Sonar ESQL Plugin - * Copyright (C) 2013-2022 Thomas Pohl and EXXETA AG + * Copyright (C) 2013-2023 Thomas Pohl and EXXETA AG * http://www.exxeta.com * * Licensed under the Apache License, Version 2.0 (the "License");