Skip to content

Commit

Permalink
Add missing type declaration to keep source uniformity
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe committed Jul 10, 2018
1 parent acf6ba6 commit d3ea293
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ final case class IncomingMessage[T, C](id: Option[String],
def withVersion(version: Long): IncomingMessage[T, C] =
this.copy(version = Option(version))

def withIndexName(indexName: String) =
def withIndexName(indexName: String): IncomingMessage[T, C] =
this.copy(indexName = Option(indexName))
}

Expand Down

0 comments on commit d3ea293

Please sign in to comment.