Skip to content

Commit

Permalink
Fix generation problem for op with param (ThalesGroup#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilvrousos-tas authored Nov 23, 2023
1 parent c7e7a2e commit 6ba11fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ class EsaCdkComponentGenerator extends ComponentGenerator {
typedef ::esa::ecss::smp::cdk::RequestContainer<_Type> Help;
// ---- Operations ----
«FOR op : t.member.filter(Operation).filter[it.isInvokable && it.attributeValue(QualifiedNames.Attributes_View) !== null && !it.parameter.exists[!(it instanceof SimpleType) || (it instanceof String)]]»
«FOR op : t.member.filter(Operation).filter[it.isInvokable && it.attributeValue(QualifiedNames.Attributes_View) !== null && !it.parameter.exists[!(it.type instanceof SimpleType) || (it.type instanceof String)]]»
«t.generatePopulateRqHandler(op, useGenPattern)»
«ENDFOR»
Expand Down

0 comments on commit 6ba11fe

Please sign in to comment.