Skip to content

Commit

Permalink
fixed scalastyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbradley committed Nov 2, 2014
1 parent fa86b20 commit 20630bc
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,7 @@ object ScalaReflection {
// Java appends a '$' to the object name but Scala does not).
val udt = Utils.classForName(className)
.getAnnotation(classOf[SQLUserDefinedType]).udt().newInstance()
//UDTRegistry.registerType(udt)
Schema(udt, nullable = true)
//case t if UDTRegistry.udtRegistry.contains(t) =>
//Schema(UDTRegistry.udtRegistry(t), nullable = true)
case t if t <:< typeOf[Option[_]] =>
val TypeRef(_, _, Seq(optType)) = t
Schema(schemaFor(optType).dataType, nullable = true)
Expand Down

0 comments on commit 20630bc

Please sign in to comment.