You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using an inner class as data produces weird schema. The this$0 parent class reference confuses the schema extractor.
e.g.
public class ExampleModule {
@Export
@Verb
public InnerClass TheVerb(InnerClass val) {
return val;
}
public class InnerClass {
private String field;
}
}
Produces:
module example {
export data ExampleModule {
}
export data InnerClass {
field String
this$0 example.ExampleModule
}
export verb TheVerb(example.InnerClass) example.InnerClass
}
The text was updated successfully, but these errors were encountered:
Using an inner class as data produces weird schema. The this$0 parent class reference confuses the schema extractor.
e.g.
Produces:
The text was updated successfully, but these errors were encountered: