-
Sub-task
-
Resolution: Done
-
Major
-
None
-
None
-
None
-
None
-
MA Sprint 16, MA Sprint 17, MA Sprint 18, Sprint 19, Sprint 20, Sprint 21, Sprint 22
we've realised that there is an issue in the java-generic-information.windup.groovy file
expressions like this one are wrong :
.when(javaMethodCallCondition("{*}.Main.getCamelContext{s|map}()"))
as internally windup is not resolving well that expression and can give false positives
that expression and similars should be replaced by :
.when(javaMethodCallCondition("{*}.Main.getCamelContext{var1}()"))
.perform(....)
.where("var1").matches("s|map")