Skip to content

Commit

Permalink
Fix compilation failure due to missing type annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuereth authored and eed3si9n committed Mar 21, 2014
1 parent b39f91f commit 5d94ad6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ object TextAnalysisFormat {
val outputDirectory = outputAsMap(singleOutputKey)
}
case `multipleOutputMode` => new MultipleOutput {
val outputGroups = outputAsMap.toArray.map {
val outputGroups: Array[MultipleOutput.OutputGroup] = outputAsMap.toArray.map {
case (src: File, out: File) => new MultipleOutput.OutputGroup {
val sourceDirectory = src
val outputDirectory = out
Expand Down

0 comments on commit 5d94ad6

Please sign in to comment.