From ae787d2ac5d04b22bad2b17ef520b5b9c42cb47a Mon Sep 17 00:00:00 2001 From: Souleymane Sidibe Date: Wed, 20 Apr 2022 19:17:18 +0000 Subject: [PATCH] delete commented code --- data/build.gradle.kts | 16 +--------------- settings.gradle.kts | 1 - shared/build.gradle.kts | 6 ------ .../com/soulesidibe/domain/entity/TodoEntity.kt | 2 +- 4 files changed, 2 insertions(+), 23 deletions(-) diff --git a/data/build.gradle.kts b/data/build.gradle.kts index 36004d9..d14f19a 100644 --- a/data/build.gradle.kts +++ b/data/build.gradle.kts @@ -38,18 +38,4 @@ kotlin { } } -} - -//dependencies { -// implementation(project(":shared")) -// implementation(Deps.kotlin) -// implementation(Deps.coroutines_android) -// implementation(Deps.koin_core) -// -// testImplementation(Deps.junit) -// testImplementation(Deps.coroutines_test) -// testImplementation(Deps.hamcrest) -// testImplementation(Deps.mockito) -// testImplementation(Deps.mockk) -// testImplementation(Deps.koin_test) -//} \ No newline at end of file +} \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index 5d47c57..85e327a 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -7,7 +7,6 @@ pluginManagement { } rootProject.name = "Todo App" include(":app") -//include(":domain") include(":data") include(":device") include(":shared") \ No newline at end of file diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index f03da96..636176e 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -29,12 +29,6 @@ kotlin { dependencies { implementation(Deps.commonTest) implementation(Deps.commonAnnotations) -// implementation(Deps.junit) -// implementation(Deps.coroutines_test) -// implementation(Deps.hamcrest) -// implementation(Deps.mockito) -// implementation(Deps.mockk) -// implementation(Deps.koin_test) } } } diff --git a/shared/src/commonMain/kotlin/com/soulesidibe/domain/entity/TodoEntity.kt b/shared/src/commonMain/kotlin/com/soulesidibe/domain/entity/TodoEntity.kt index 9b8d8a5..762cd80 100644 --- a/shared/src/commonMain/kotlin/com/soulesidibe/domain/entity/TodoEntity.kt +++ b/shared/src/commonMain/kotlin/com/soulesidibe/domain/entity/TodoEntity.kt @@ -1,3 +1,3 @@ package com.soulesidibe.domain.entity -data class TodoEntity(val id: String /*= "${System.currentTimeMillis()}"*/, val title: String) +data class TodoEntity(val id: String, val title: String)