Skip to content

Commit

Permalink
Warnings are supressed now, cleaner build for Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
cprieto committed Oct 26, 2015
1 parent c72fad1 commit 7c53657
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Expand Up @@ -38,3 +38,7 @@ test {
events "skipped", "failed"
}
}

compileKotlin {
kotlinOptions.suppressWarnings = true
}
Expand Up @@ -3,6 +3,7 @@ package i_introduction._7_Nullable_Types
import org.junit.Test
import org.junit.Assert

@Suppress("PARAMETER_NAME_CHANGED_ON_OVERRIDE")
class _05_Nullable_Types {
fun testSendMessageToClient(
client: Client?,
Expand Down

0 comments on commit 7c53657

Please sign in to comment.