Skip to content

Commit 7d0d2f9

Browse files
committed
Happy New Year!
1 parent 45c8cfb commit 7d0d2f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<module name="Translation"/>
2525

2626
<module name="Header">
27-
<property name="header" value="/*\n * Copyright (c) 2002-2024 Gargoyle Software Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an &quot;AS IS&quot; BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"/>
27+
<property name="header" value="/*\n * Copyright (c) 2002-2025 Gargoyle Software Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an &quot;AS IS&quot; BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"/>
2828
</module>
2929

3030
<module name="FileTabCharacter">

src/main/java/org/htmlunit/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ public static String getProductVersion() {
7979
* @return the copyright notice
8080
*/
8181
public static String getCopyright() {
82-
return "Copyright (c) 2002-2024 Gargoyle Software Inc. All rights reserved.";
82+
return "Copyright (c) 2002-2025 Gargoyle Software Inc. All rights reserved.";
8383
}
8484
}

src/test/java/org/htmlunit/CodeStyleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ private void licenseYear() throws IOException {
353353
for (final String line : lines) {
354354
if (line.contains("<property name=\"header\"")) {
355355
if (!line.contains(copyright)) {
356-
addFailure("checkstyle.xml", 0, "Incorrect year in LICENSE.txt");
356+
addFailure("checkstyle.xml", 0, "Incorrect year in checkstyle.xml");
357357
}
358358
check = true;
359359
}

0 commit comments

Comments
 (0)