Skip to content

Commit 8bae45d

Browse files
Consider external members as not plain (#185) (#189)
(cherry picked from commit aedde6d) Signed-off-by: Miguel Company <miguelcompany@eprosima.com> Co-authored-by: Miguel Company <miguelcompany@eprosima.com>
1 parent 3c82266 commit 8bae45d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/com/eprosima/idl/parser/typecode

src/main/java/com/eprosima/idl/parser/typecode/Member.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ public String getAnnotationDefaultValue()
209209

210210
public boolean isIsPlain()
211211
{
212-
if (m_typecode != null && !isAnnotationOptional())
212+
if (m_typecode != null && !isAnnotationOptional() && !isAnnotationExternal())
213213
{
214214
return m_typecode.isIsPlain();
215215
}

0 commit comments

Comments
 (0)