diff --git a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java index 0543b49..b649a3b 100644 --- a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java +++ b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java @@ -35,10 +35,6 @@ public class ComponentAnnotationContent private String roleHint; - private boolean required = false; - - private boolean readonly = false; - public ComponentAnnotationContent( String fieldName ) { super( fieldName ); @@ -76,26 +72,6 @@ public class ComponentAnnotationContent return null; } - public boolean required() - { - return required; - } - - public void required( boolean required ) - { - this.required = required; - } - - public boolean readonly() - { - return readonly; - } - - public void readonly( boolean readonly ) - { - this.readonly = readonly; - } - @Override public String toString() {