From a43ff83fed5bed120b22f40ace90a5aab45987b1 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Mon, 13 Jan 2025 10:50:58 +0800 Subject: [PATCH] docs: update license --- README-zh-CN.md | 4 ++-- README.md | 4 ++-- .../com/highcapable/yukireflection/demo_app/test/Main.java | 2 +- .../highcapable/yukireflection/demo_app/ui/MainActivity.kt | 2 +- .../main/java/com/highcapable/yukireflection/demo_jvm/Main.kt | 2 +- .../com/highcapable/yukireflection/demo_jvm/test/Main.java | 2 +- .../java/com/highcapable/yukireflection/YukiReflection.kt | 2 +- .../java/com/highcapable/yukireflection/bean/CurrentClass.kt | 2 +- .../java/com/highcapable/yukireflection/bean/GenericClass.kt | 2 +- .../java/com/highcapable/yukireflection/bean/VariousClass.kt | 2 +- .../highcapable/yukireflection/factory/ReflectionFactory.kt | 2 +- .../com/highcapable/yukireflection/finder/base/BaseFinder.kt | 2 +- .../highcapable/yukireflection/finder/base/ClassBaseFinder.kt | 2 +- .../yukireflection/finder/base/MemberBaseFinder.kt | 2 +- .../yukireflection/finder/base/data/BaseRulesData.kt | 2 +- .../yukireflection/finder/base/rules/CountRules.kt | 2 +- .../yukireflection/finder/base/rules/ModifierRules.kt | 2 +- .../highcapable/yukireflection/finder/base/rules/NameRules.kt | 2 +- .../yukireflection/finder/base/rules/ObjectRules.kt | 2 +- .../yukireflection/finder/classes/DexClassFinder.kt | 2 +- .../yukireflection/finder/classes/data/ClassRulesData.kt | 2 +- .../yukireflection/finder/classes/rules/ConstructorRules.kt | 2 +- .../yukireflection/finder/classes/rules/FieldRules.kt | 2 +- .../yukireflection/finder/classes/rules/MemberRules.kt | 2 +- .../yukireflection/finder/classes/rules/MethodRules.kt | 2 +- .../yukireflection/finder/classes/rules/base/BaseRules.kt | 2 +- .../finder/classes/rules/result/MemberRulesResult.kt | 2 +- .../yukireflection/finder/members/ConstructorFinder.kt | 2 +- .../highcapable/yukireflection/finder/members/FieldFinder.kt | 2 +- .../highcapable/yukireflection/finder/members/MethodFinder.kt | 2 +- .../finder/members/data/ConstructorRulesData.kt | 2 +- .../yukireflection/finder/members/data/FieldRulesData.kt | 2 +- .../yukireflection/finder/members/data/MemberRulesData.kt | 2 +- .../yukireflection/finder/members/data/MethodRulesData.kt | 2 +- .../highcapable/yukireflection/finder/tools/ReflectionTool.kt | 2 +- .../yukireflection/finder/type/factory/TypeAliasFactory.kt | 2 +- .../src/main/java/com/highcapable/yukireflection/log/YLog.kt | 2 +- .../yukireflection/type/android/ComponentTypeFactory.kt | 2 +- .../yukireflection/type/android/GraphicsTypeFactory.kt | 2 +- .../yukireflection/type/android/ViewTypeFactory.kt | 2 +- .../yukireflection/type/defined/DefinedTypeFactory.kt | 2 +- .../yukireflection/type/java/VariableTypeFactory.kt | 2 +- .../highcapable/yukireflection/utils/factory/ThreadFactory.kt | 2 +- .../yukireflection/utils/factory/ThrowableFactory.kt | 2 +- .../yukireflection/utils/factory/VariableFactory.kt | 2 +- 45 files changed, 47 insertions(+), 47 deletions(-) diff --git a/README-zh-CN.md b/README-zh-CN.md index eb86b21..169137a 100644 --- a/README-zh-CN.md +++ b/README-zh-CN.md @@ -50,7 +50,7 @@ ``` Apache License Version 2.0 -Copyright (C) 2019-2024 HighCapable +Copyright (C) 2019 HighCapable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -65,4 +65,4 @@ See the License for the specific language governing permissions and limitations under the License. ``` -版权所有 © 2019-2024 HighCapable \ No newline at end of file +版权所有 © 2019 HighCapable \ No newline at end of file diff --git a/README.md b/README.md index fd28e5c..f0c4f72 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The name is taken from ["ももくり" heroine Yuki Kurihara](https://www.bilibi ``` Apache License Version 2.0 -Copyright (C) 2019-2024 HighCapable +Copyright (C) 2019 HighCapable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -65,4 +65,4 @@ See the License for the specific language governing permissions and limitations under the License. ``` -Copyright © 2019-2024 HighCapable \ No newline at end of file +Copyright © 2019 HighCapable \ No newline at end of file diff --git a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java index d4236f6..907a0bc 100644 --- a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java +++ b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt index 8b4a7d0..76d70a9 100644 --- a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt +++ b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt index e6978b2..9521130 100644 --- a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt +++ b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java index 039b6ed..d4e9211 100644 --- a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java +++ b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt index a146e27..2989262 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt index 37042ac..100f443 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt index ccf546c..88c6569 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt index d6030cd..72adc4b 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt index 91fab3c..5d8d47a 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt index 628b5fb..2edc4c1 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt index f49ca05..70600b1 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt index 141fbd1..c50ec0d 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt index dcd3fbc..9798fd4 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt index 376d2af..d8482f3 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt index 2a29085..8257fe6 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt index cc9e62a..2e7bcfb 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt index 8a2f52f..d998232 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt index 83f4c97..257ad26 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt index e7284d5..717f1bf 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt index 76300b3..6a1feed 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt index 8aee9ea..27d6c6e 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt index bb8a458..1f50bdb 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt index 4f08e1e..3de50a6 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt index 29f635e..9e13380 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt index def0bd7..8f73c48 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt index 1b950f6..a99514d 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt index 3814d1b..dc70741 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt index 3903428..648a1f9 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt index 034aee9..8130e30 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt index 0447451..58520bc 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt index 39f05d1..2ae7563 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt index db0cced..4a7e6fd 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt index 8f6c29c..47df411 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt index 288f488..89288c4 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt index 9a6506d..f77a39a 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt index 313be07..4030ef6 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt index 0a054a9..b7557dc 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt index 82a9126..d7ce0c4 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt index 2aea46f..c928cfb 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt index 705077b..24aceb2 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt index 7d59c5a..c9b3d1f 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt index eb87736..5b60840 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt index 3999eaa..41dae78 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2024 HighCapable + * Copyright (C) 2019 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0