Skip to content

Commit

Permalink
move space
Browse files Browse the repository at this point in the history
  • Loading branch information
luka.jurukovski committed Oct 19, 2018
1 parent 363a58e commit 34432c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AnnotationExtractors(annos: Seq[Anno]) {

def name: Option[String] = findFirst(classOf[AvroNameable])

def props: Map[String, String] = annos.filter( c=> classOf[AvroProperty].isAssignableFrom(Class.forName(c.className))).map { anno =>
def props: Map[String, String] = annos.filter(c => classOf[AvroProperty].isAssignableFrom(Class.forName(c.className))).map { anno =>
anno.args.head.toString -> anno.args(1).toString
}.toMap

Expand Down

0 comments on commit 34432c0

Please sign in to comment.