From fddf832c0f6876e771912a1ae3ff9955a6a8cd9a Mon Sep 17 00:00:00 2001 From: Sam Cao Date: Fri, 3 Jan 2025 07:21:03 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=83=20docs:=20Update=20copyright=20yea?= =?UTF-8?q?r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 2 +- docs/conf.py | 2 +- scripts/ts/change-version.ts | 2 +- settings.gradle.kts | 2 +- src/main/java/com/caoccao/javet/javenode/JNEventLoop.java | 2 +- .../java/com/caoccao/javet/javenode/JNEventLoopOptions.java | 2 +- .../java/com/caoccao/javet/javenode/enums/JNModuleType.java | 2 +- .../com/caoccao/javet/javenode/enums/JNPrivatePropertyEnum.java | 2 +- .../java/com/caoccao/javet/javenode/interfaces/IJNFunction.java | 2 +- .../java/com/caoccao/javet/javenode/interfaces/IJNModule.java | 2 +- .../java/com/caoccao/javet/javenode/modules/BaseJNCallable.java | 2 +- .../java/com/caoccao/javet/javenode/modules/BaseJNFunction.java | 2 +- .../java/com/caoccao/javet/javenode/modules/BaseJNModule.java | 2 +- .../caoccao/javet/javenode/modules/JNDynamicModuleResolver.java | 2 +- .../caoccao/javet/javenode/modules/console/ConsoleModule.java | 2 +- .../com/caoccao/javet/javenode/modules/javet/JavetModule.java | 2 +- .../javet/javenode/modules/timers/BaseTimersFunction.java | 2 +- .../javenode/modules/timers/BaseTimersPromisesFunction.java | 2 +- .../caoccao/javet/javenode/modules/timers/TimersConstants.java | 2 +- .../caoccao/javet/javenode/modules/timers/TimersImmediate.java | 2 +- .../com/caoccao/javet/javenode/modules/timers/TimersModule.java | 2 +- .../javet/javenode/modules/timers/TimersPromisesImmediate.java | 2 +- .../javet/javenode/modules/timers/TimersPromisesInterval.java | 2 +- .../javet/javenode/modules/timers/TimersPromisesModule.java | 2 +- .../javet/javenode/modules/timers/TimersPromisesTimeout.java | 2 +- .../caoccao/javet/javenode/modules/timers/TimersTimeout.java | 2 +- src/test/java/com/caoccao/javet/javenode/BaseJNTestSuite.java | 2 +- src/test/java/com/caoccao/javet/javenode/TestTutorial.java | 2 +- .../javet/javenode/modules/console/TestConsoleModule.java | 2 +- .../caoccao/javet/javenode/modules/console/TutorialConsole.java | 2 +- .../caoccao/javet/javenode/modules/javet/TestJavetModule.java | 2 +- .../com/caoccao/javet/javenode/modules/javet/TutorialJavet.java | 2 +- .../caoccao/javet/javenode/modules/timers/BaseTestTimers.java | 2 +- .../javet/javenode/modules/timers/BaseTestTimersPromises.java | 2 +- .../javet/javenode/modules/timers/TestTimersImmediate.java | 2 +- .../javet/javenode/modules/timers/TestTimersInterval.java | 2 +- .../javenode/modules/timers/TestTimersPromisesImmediate.java | 2 +- .../javenode/modules/timers/TestTimersPromisesInterval.java | 2 +- .../javenode/modules/timers/TestTimersPromisesTimeout.java | 2 +- .../javet/javenode/modules/timers/TestTimersTimeout.java | 2 +- .../javenode/modules/timers/TutorialTimersPromisesTimeout.java | 2 +- .../javet/javenode/modules/timers/TutorialTimersTimeout.java | 2 +- 42 files changed, 42 insertions(+), 42 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 8fc66c0..d5b6255 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/docs/conf.py b/docs/conf.py index 36e4aba..ffda10b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ # -- Project information ----------------------------------------------------- project = 'Javenode' -copyright = '2021-2024. caoccao.com Sam Cao' +copyright = '2021-2025. caoccao.com Sam Cao' author = 'Sam Cao' # The full version, including alpha/beta/rc tags diff --git a/scripts/ts/change-version.ts b/scripts/ts/change-version.ts index 31a0029..4932e38 100644 --- a/scripts/ts/change-version.ts +++ b/scripts/ts/change-version.ts @@ -1,5 +1,5 @@ /* -* Copyright (c) 2024. caoccao.com Sam Cao +* Copyright (c) 2024-2025. caoccao.com Sam Cao * All rights reserved. * Licensed under the Apache License, Version 2.0 (the "License") diff --git a/settings.gradle.kts b/settings.gradle.kts index 8dbd461..203e792 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/JNEventLoop.java b/src/main/java/com/caoccao/javet/javenode/JNEventLoop.java index 4354a16..2db0a86 100644 --- a/src/main/java/com/caoccao/javet/javenode/JNEventLoop.java +++ b/src/main/java/com/caoccao/javet/javenode/JNEventLoop.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/JNEventLoopOptions.java b/src/main/java/com/caoccao/javet/javenode/JNEventLoopOptions.java index 76bf409..efbe80e 100644 --- a/src/main/java/com/caoccao/javet/javenode/JNEventLoopOptions.java +++ b/src/main/java/com/caoccao/javet/javenode/JNEventLoopOptions.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/enums/JNModuleType.java b/src/main/java/com/caoccao/javet/javenode/enums/JNModuleType.java index 0202ff4..10438ea 100644 --- a/src/main/java/com/caoccao/javet/javenode/enums/JNModuleType.java +++ b/src/main/java/com/caoccao/javet/javenode/enums/JNModuleType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/enums/JNPrivatePropertyEnum.java b/src/main/java/com/caoccao/javet/javenode/enums/JNPrivatePropertyEnum.java index 0f71fb5..4fe09ac 100644 --- a/src/main/java/com/caoccao/javet/javenode/enums/JNPrivatePropertyEnum.java +++ b/src/main/java/com/caoccao/javet/javenode/enums/JNPrivatePropertyEnum.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/interfaces/IJNFunction.java b/src/main/java/com/caoccao/javet/javenode/interfaces/IJNFunction.java index 314c4a2..3451a33 100644 --- a/src/main/java/com/caoccao/javet/javenode/interfaces/IJNFunction.java +++ b/src/main/java/com/caoccao/javet/javenode/interfaces/IJNFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/interfaces/IJNModule.java b/src/main/java/com/caoccao/javet/javenode/interfaces/IJNModule.java index a251bb6..bb0ea1b 100644 --- a/src/main/java/com/caoccao/javet/javenode/interfaces/IJNModule.java +++ b/src/main/java/com/caoccao/javet/javenode/interfaces/IJNModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/BaseJNCallable.java b/src/main/java/com/caoccao/javet/javenode/modules/BaseJNCallable.java index 5f7ae67..5495354 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/BaseJNCallable.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/BaseJNCallable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023-2024. caoccao.com Sam Cao + * Copyright (c) 2023-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/BaseJNFunction.java b/src/main/java/com/caoccao/javet/javenode/modules/BaseJNFunction.java index d555dcb..dcb28dc 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/BaseJNFunction.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/BaseJNFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/BaseJNModule.java b/src/main/java/com/caoccao/javet/javenode/modules/BaseJNModule.java index 16357ad..6cd609c 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/BaseJNModule.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/BaseJNModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/JNDynamicModuleResolver.java b/src/main/java/com/caoccao/javet/javenode/modules/JNDynamicModuleResolver.java index fa99bf1..a68f14e 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/JNDynamicModuleResolver.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/JNDynamicModuleResolver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/console/ConsoleModule.java b/src/main/java/com/caoccao/javet/javenode/modules/console/ConsoleModule.java index cefa7f0..aabb155 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/console/ConsoleModule.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/console/ConsoleModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/javet/JavetModule.java b/src/main/java/com/caoccao/javet/javenode/modules/javet/JavetModule.java index 4b9746e..b3c4ffe 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/javet/JavetModule.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/javet/JavetModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024. caoccao.com Sam Cao + * Copyright (c) 2024-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersFunction.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersFunction.java index fe3cacf..ed3413f 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersFunction.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersPromisesFunction.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersPromisesFunction.java index 4f90281..e41bbf1 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersPromisesFunction.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/BaseTimersPromisesFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersConstants.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersConstants.java index ee14803..11fadd8 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersConstants.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersConstants.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersImmediate.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersImmediate.java index 1e1611c..519293a 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersImmediate.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersImmediate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersModule.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersModule.java index 9bbb72a..25a6399 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersModule.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesImmediate.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesImmediate.java index c3d3f2c..7b89943 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesImmediate.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesImmediate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesInterval.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesInterval.java index d8e5777..02e693d 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesInterval.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesInterval.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesModule.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesModule.java index bd99617..c974ed2 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesModule.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesTimeout.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesTimeout.java index 7783226..fb361ec 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesTimeout.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersPromisesTimeout.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersTimeout.java b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersTimeout.java index 2ccd78e..52b9eb2 100644 --- a/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersTimeout.java +++ b/src/main/java/com/caoccao/javet/javenode/modules/timers/TimersTimeout.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/BaseJNTestSuite.java b/src/test/java/com/caoccao/javet/javenode/BaseJNTestSuite.java index e31db62..50e9a1b 100644 --- a/src/test/java/com/caoccao/javet/javenode/BaseJNTestSuite.java +++ b/src/test/java/com/caoccao/javet/javenode/BaseJNTestSuite.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/TestTutorial.java b/src/test/java/com/caoccao/javet/javenode/TestTutorial.java index d1c155e..7776ca4 100644 --- a/src/test/java/com/caoccao/javet/javenode/TestTutorial.java +++ b/src/test/java/com/caoccao/javet/javenode/TestTutorial.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/console/TestConsoleModule.java b/src/test/java/com/caoccao/javet/javenode/modules/console/TestConsoleModule.java index d627bbf..9691ff1 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/console/TestConsoleModule.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/console/TestConsoleModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/console/TutorialConsole.java b/src/test/java/com/caoccao/javet/javenode/modules/console/TutorialConsole.java index 4e5b3f7..fcb3603 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/console/TutorialConsole.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/console/TutorialConsole.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/javet/TestJavetModule.java b/src/test/java/com/caoccao/javet/javenode/modules/javet/TestJavetModule.java index c7efed6..0e94e14 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/javet/TestJavetModule.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/javet/TestJavetModule.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/javet/TutorialJavet.java b/src/test/java/com/caoccao/javet/javenode/modules/javet/TutorialJavet.java index 572e39e..3d7cfa3 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/javet/TutorialJavet.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/javet/TutorialJavet.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimers.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimers.java index e4515f0..56bb8dd 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimers.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimers.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimersPromises.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimersPromises.java index 7858e77..df1ad81 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimersPromises.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/BaseTestTimersPromises.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersImmediate.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersImmediate.java index bb159f1..9ffdd0c 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersImmediate.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersImmediate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersInterval.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersInterval.java index 2409a83..d5124fa 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersInterval.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersInterval.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesImmediate.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesImmediate.java index 9bdbc35..b3f24af 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesImmediate.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesImmediate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesInterval.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesInterval.java index 2d4dcc1..6f70e13 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesInterval.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesInterval.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesTimeout.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesTimeout.java index 23db40e..89335a1 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesTimeout.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersPromisesTimeout.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersTimeout.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersTimeout.java index 6ecf83d..c5f3294 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersTimeout.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TestTimersTimeout.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersPromisesTimeout.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersPromisesTimeout.java index a1b7c28..5e04456 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersPromisesTimeout.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersPromisesTimeout.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersTimeout.java b/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersTimeout.java index 31f5e41..ad70002 100644 --- a/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersTimeout.java +++ b/src/test/java/com/caoccao/javet/javenode/modules/timers/TutorialTimersTimeout.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2024. caoccao.com Sam Cao + * Copyright (c) 2021-2025. caoccao.com Sam Cao * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.