Author: simonetripodi
Date: Tue Jun 12 19:47:49 2012
New Revision: 1349495

URL: http://svn.apache.org/viewvc?rev=1349495&view=rev
Log:
dropped useless modifiers (thanks Bene)

Modified:
    
commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanProperties.java

Modified: 
commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanProperties.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanProperties.java?rev=1349495&r1=1349494&r2=1349495&view=diff
==============================================================================
--- 
commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanProperties.java
 (original)
+++ 
commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanProperties.java
 Tue Jun 12 19:47:49 2012
@@ -68,7 +68,7 @@ public interface BeanProperties<B>
      * @throws IntrospectionException
      * @throws NoSuchMethodException
      */
-    public abstract PropertyDescriptor getPropertyDescriptor( String 
propertyName )
+    PropertyDescriptor getPropertyDescriptor( String propertyName )
         throws IntrospectionException;
 
     /**
@@ -78,7 +78,7 @@ public interface BeanProperties<B>
      * @throws IntrospectionException
      * @throws NoSuchMethodException
      */
-    public abstract Method getReadPropertyMethod( String propertyName )
+    Method getReadPropertyMethod( String propertyName )
         throws IntrospectionException, NoSuchMethodException;
 
     /**
@@ -88,7 +88,7 @@ public interface BeanProperties<B>
      * @throws NoSuchMethodException
      * @throws IntrospectionException
      */
-    public abstract Method getWriteMethod( String name )
+    Method getWriteMethod( String name )
         throws NoSuchMethodException, IntrospectionException;
 
     /**
@@ -98,7 +98,7 @@ public interface BeanProperties<B>
      * @throws NoSuchMethodException
      * @throws IntrospectionException
      */
-    public abstract IndexedPropertyDescriptor getIndexedPropertyDescriptor( 
String propertyName )
+    IndexedPropertyDescriptor getIndexedPropertyDescriptor( String 
propertyName )
         throws NoSuchMethodException, IntrospectionException;
 
     /**
@@ -108,7 +108,7 @@ public interface BeanProperties<B>
      * @throws NoSuchMethodException
      * @throws IntrospectionException
      */
-    public abstract Method getIndexedReadMethod( String propertyName )
+    Method getIndexedReadMethod( String propertyName )
         throws NoSuchMethodException, IntrospectionException;
 
     /**
@@ -118,7 +118,7 @@ public interface BeanProperties<B>
      * @throws NoSuchMethodException
      * @throws IntrospectionException
      */
-    public abstract Method getIndexedWriteMethod( String propertyName )
+    Method getIndexedWriteMethod( String propertyName )
         throws NoSuchMethodException, IntrospectionException;
 
     /**
@@ -126,7 +126,7 @@ public interface BeanProperties<B>
      * @return
      * @throws IntrospectionException
      */
-    public abstract Map<String, PropertyDescriptor> getPropertiesIndex()
+    Map<String, PropertyDescriptor> getPropertiesIndex()
         throws IntrospectionException;
 
 }


Reply via email to