From f87fe442bd28a6250302fb52b3593ed47d268320 Mon Sep 17 00:00:00 2001 From: Ivan “CLOVIS” Canet Date: Fri, 20 Jun 2025 14:11:51 +0000 Subject: [PATCH] docs(compat-parameterize): Add Apache 2.0 license header --- compat/compat-parameterize/src/commonMain/kotlin/Marker.kt | 4 ---- compat/compat-parameterize/src/commonMain/kotlin/Parameterize.kt | 16 ++++++++++++++++ compat/compat-parameterize/src/commonTest/kotlin/ParamaterizeTests.kt | 16 ++++++++++++++++ compat/compat-parameterize/src/commonTest/kotlin/ParameterizeExamples.kt | 16 ++++++++++++++++ 4 file(s) changed, 48 insertion(s)(+), 4 deletion(s)(-) diff --git a/compat/compat-parameterize/src/commonMain/kotlin/Marker.kt b/compat/compat-parameterize/src/commonMain/kotlin/Marker.kt deleted file mode 100644 --- a/compat/compat-parameterize/src/commonMain/kotlin/Marker.kt +++ /dev/null @@ -1,4 +0,0 @@ -package opensavvy.prepared.compat.parameterize - -// Kotlin/Native doesn't like empty modules -private typealias Marker = Nothing diff --git a/compat/compat-parameterize/src/commonMain/kotlin/Parameterize.kt b/compat/compat-parameterize/src/commonMain/kotlin/Parameterize.kt --- a/compat/compat-parameterize/src/commonMain/kotlin/Parameterize.kt +++ b/compat/compat-parameterize/src/commonMain/kotlin/Parameterize.kt @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2024-2025, OpenSavvy and contributors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package opensavvy.prepared.compat.parameterize import com.benwoodworth.parameterize.ExperimentalParameterizeApi diff --git a/compat/compat-parameterize/src/commonTest/kotlin/ParamaterizeTests.kt b/compat/compat-parameterize/src/commonTest/kotlin/ParamaterizeTests.kt --- a/compat/compat-parameterize/src/commonTest/kotlin/ParamaterizeTests.kt +++ b/compat/compat-parameterize/src/commonTest/kotlin/ParamaterizeTests.kt @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2024-2025, OpenSavvy and contributors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package opensavvy.prepared.compat.parameterize import com.benwoodworth.parameterize.ExperimentalParameterizeApi diff --git a/compat/compat-parameterize/src/commonTest/kotlin/ParameterizeExamples.kt b/compat/compat-parameterize/src/commonTest/kotlin/ParameterizeExamples.kt --- a/compat/compat-parameterize/src/commonTest/kotlin/ParameterizeExamples.kt +++ b/compat/compat-parameterize/src/commonTest/kotlin/ParameterizeExamples.kt @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2024-2025, OpenSavvy and contributors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package opensavvy.prepared.compat.parameterize import com.benwoodworth.parameterize.parameterOf -- tangled.sh