You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/05/17 23:45:17 UTC

svn commit: r1339872 - /maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java

Author: hboutemy
Date: Thu May 17 21:45:16 2012
New Revision: 1339872

URL: http://svn.apache.org/viewvc?rev=1339872&view=rev
Log:
removed readonly and required attributes, started with r1339666

Modified:
    maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java

Modified: maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java?rev=1339872&r1=1339871&r2=1339872&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/datamodel/ComponentAnnotationContent.java Thu May 17 21:45:16 2012
@@ -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()
     {