File tree Expand file tree Collapse file tree
schema2json/src/main/scala Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ object Schema2Json extends App {
4949 val description = info.getDeclaringClass.getDeclaredMethod(" description" ).invoke(null ).asInstanceOf [String ]
5050 val providedByFrontend =
5151 info.getDeclaringClass.getDeclaredMethod(" providedByFrontend" ).invoke(null ).asInstanceOf [Boolean ]
52- (" name" -> name) ~
52+ (" name" -> name) ~
5353 (" description" -> description) ~
5454 (" providedByFrontend" -> providedByFrontend)
5555 }
@@ -106,7 +106,7 @@ object Schema2Json extends App {
106106 .flatMap { edge =>
107107 val schName = schemaName(edge.schemaInfo)
108108 Some (
109- (" name" -> edge.name) ~
109+ (" name" -> edge.name) ~
110110 (" comment" -> edge.comment) ~
111111 (" schema" -> schName)
112112 )
@@ -120,7 +120,7 @@ object Schema2Json extends App {
120120 .flatMap { prop =>
121121 val schName = schemaName(prop.schemaInfo)
122122 Some (
123- (" name" -> prop.name) ~
123+ (" name" -> prop.name) ~
124124 (" comment" -> prop.comment) ~
125125 (" schema" -> schName)
126126 )
You can’t perform that action at this time.
0 commit comments