From 53dfd41c54a573758bfcf150977650bae62e7ecf Mon Sep 17 00:00:00 2001 From: Herve Boutemy Date: Thu, 17 May 2012 21:45:16 +0000 Subject: [PATCH] removed readonly and required attributes, started with r1339666 git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1339872 13f79535-47bb-0310-9956-ffa450edef68 --- .../datamodel/ComponentAnnotationContent.java | 24 ------------------- 1 file changed, 24 deletions(-) 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() {