From 65a8ea7acd279fa8bc6b657451e86c49e16fdd24 Mon Sep 17 00:00:00 2001 From: HyunWoo Lee Date: Thu, 26 Dec 2024 19:52:54 +0900 Subject: [PATCH] [#1009] Spotless Apply --- .../org/sopt/official/analytics/Tracker.kt | 24 +++++++++++++++++++ .../sopt/official/analytics/TrackerModule.kt | 24 +++++++++++++++++++ .../analytics/compose/CompositionLocal.kt | 24 +++++++++++++++++++ .../analytics/compose/LocalTracker.kt | 24 +++++++++++++++++++ .../official/analytics/impl/FakeTracker.kt | 24 +++++++++++++++++++ 5 files changed, 120 insertions(+) diff --git a/core/analytics/src/main/java/org/sopt/official/analytics/Tracker.kt b/core/analytics/src/main/java/org/sopt/official/analytics/Tracker.kt index 259717400..b3b547bda 100644 --- a/core/analytics/src/main/java/org/sopt/official/analytics/Tracker.kt +++ b/core/analytics/src/main/java/org/sopt/official/analytics/Tracker.kt @@ -1,3 +1,27 @@ +/* + * MIT License + * Copyright 2024 SOPT - Shout Our Passion Together + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ package org.sopt.official.analytics interface Tracker { diff --git a/core/analytics/src/main/java/org/sopt/official/analytics/TrackerModule.kt b/core/analytics/src/main/java/org/sopt/official/analytics/TrackerModule.kt index 59234d8c8..61e0a958b 100644 --- a/core/analytics/src/main/java/org/sopt/official/analytics/TrackerModule.kt +++ b/core/analytics/src/main/java/org/sopt/official/analytics/TrackerModule.kt @@ -1,3 +1,27 @@ +/* + * MIT License + * Copyright 2024 SOPT - Shout Our Passion Together + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ package org.sopt.official.analytics import dagger.Binds diff --git a/core/analytics/src/main/java/org/sopt/official/analytics/compose/CompositionLocal.kt b/core/analytics/src/main/java/org/sopt/official/analytics/compose/CompositionLocal.kt index c7335d1bb..502709e7a 100644 --- a/core/analytics/src/main/java/org/sopt/official/analytics/compose/CompositionLocal.kt +++ b/core/analytics/src/main/java/org/sopt/official/analytics/compose/CompositionLocal.kt @@ -1,3 +1,27 @@ +/* + * MIT License + * Copyright 2024 SOPT - Shout Our Passion Together + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ package org.sopt.official.analytics.compose import androidx.compose.runtime.Composable diff --git a/core/analytics/src/main/java/org/sopt/official/analytics/compose/LocalTracker.kt b/core/analytics/src/main/java/org/sopt/official/analytics/compose/LocalTracker.kt index 2ae62f372..e5f1b8427 100644 --- a/core/analytics/src/main/java/org/sopt/official/analytics/compose/LocalTracker.kt +++ b/core/analytics/src/main/java/org/sopt/official/analytics/compose/LocalTracker.kt @@ -1,3 +1,27 @@ +/* + * MIT License + * Copyright 2024 SOPT - Shout Our Passion Together + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ package org.sopt.official.analytics.compose import androidx.compose.runtime.staticCompositionLocalOf diff --git a/core/analytics/src/main/java/org/sopt/official/analytics/impl/FakeTracker.kt b/core/analytics/src/main/java/org/sopt/official/analytics/impl/FakeTracker.kt index 353e716aa..a443ccf11 100644 --- a/core/analytics/src/main/java/org/sopt/official/analytics/impl/FakeTracker.kt +++ b/core/analytics/src/main/java/org/sopt/official/analytics/impl/FakeTracker.kt @@ -1,3 +1,27 @@ +/* + * MIT License + * Copyright 2024 SOPT - Shout Our Passion Together + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ package org.sopt.official.analytics.impl import org.sopt.official.analytics.EventType