Skip to content

Commit

Permalink
delete commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
soulesidibe committed Apr 20, 2022
1 parent 6635908 commit ae787d2
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 23 deletions.
16 changes: 1 addition & 15 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
//}
}
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ pluginManagement {
}
rootProject.name = "Todo App"
include(":app")
//include(":domain")
include(":data")
include(":device")
include(":shared")
6 changes: 0 additions & 6 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit ae787d2

Please sign in to comment.