Skip to content

Commit

Permalink
Fix Id equality, should be a data class
Browse files Browse the repository at this point in the history
Also remove incremental compilation from project( use it now in your local.properties) to fix CI builds
  • Loading branch information
ffgiraldez committed Apr 2, 2017
1 parent 5ec018c commit 0af81ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ org.gradle.jvmargs=-Xmx2048m
# org.gradle.parallel=true

# Kotlin configuration
kotlin.coroutines=enable
kotlin.incremental=true
kotlin.coroutines=enable
2 changes: 1 addition & 1 deletion katz/src/main/kotlin/katz/data/Id.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package katz

class Id<out A>(val value: A) : HK<Id.F, A> {
data class Id<out A>(val value: A) : HK<Id.F, A> {

class F private constructor()

Expand Down

0 comments on commit 0af81ed

Please sign in to comment.