Github user StephanEwen commented on the pull request: https://github.com/apache/flink/pull/2011#issuecomment-221288209 Does this also prevent infinite recursion on non transitive recursive types? Something like: ```java public class A { public B field; } public class B { public A field; } ``` Or (recursion via generics): ```java public class Container<T> { public T field; } public class MyType extends Container<Container<Object>> {} ``` Can these be handled correctly right now?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---