Skip to content

Commit

Permalink
Remove function can be misleading (#157)
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <[email protected]>
  • Loading branch information
richiware authored Sep 10, 2024
1 parent 8191ad2 commit 015e2f1
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/main/java/com/eprosima/idl/parser/typecode/TypeCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -509,18 +509,6 @@ public boolean isAnnotationMutable()
return ExtensibilityKind.MUTABLE == extensibility_;
}

public boolean isAnnotationExtensibilityNotApplied()
{
if (!m_annotations.containsKey(Annotation.final_str) &&
!m_annotations.containsKey(Annotation.appendable_str) &&
!m_annotations.containsKey(Annotation.mutable_str) &&
!m_annotations.containsKey(Annotation.extensibility_str))
{
return true;
}
return false;
}

public boolean isAnnotationNested()
{
Annotation ann = m_annotations.get(Annotation.nested_str);
Expand Down

0 comments on commit 015e2f1

Please sign in to comment.