Author: kkolinko
Date: Sat Nov 20 21:46:37 2010
New Revision: 1037338
URL: http://svn.apache.org/viewvc?rev=1037338&view=rev
Log:
Remove empty lines.
Looks like this class suffered from EOLN misconfigurations. It is
svn:eol-style=native already.
Modified:
tomcat/taglibs/standard/trunk/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BeanInfoIndexedProperty.java
Modified:
tomcat/taglibs/standard/trunk/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BeanInfoIndexedProperty.java
URL:
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BeanInfoIndexedProperty.java?rev=1037338&r1=1037337&r2=1037338&view=diff
==============================================================================
---
tomcat/taglibs/standard/trunk/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BeanInfoIndexedProperty.java
(original)
+++
tomcat/taglibs/standard/trunk/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BeanInfoIndexedProperty.java
Sat Nov 20 21:46:37 2010
@@ -25,102 +25,64 @@ import java.lang.reflect.Method;
/**
* <p>This contains the information for one indexed property in a
- * <p/>
- * BeanInfo - IndexedPropertyDescriptor, read method, and write
- * <p/>
+ * <p>BeanInfo - IndexedPropertyDescriptor, read method, and write
* method. This class is necessary because the read/write methods in
- * <p/>
* the IndexedPropertyDescriptor may not be accessible if the bean
- * <p/>
* given to the introspector is not a public class. In this case, a
- * <p/>
* publicly accessible version of the method must be found by
- * <p/>
* searching for a public superclass/interface that declares the
- * <p/>
* method (this searching is done by the BeanInfoManager).
*
* @author Nathan Abramson - Art Technology Group
* @version $Change: 181181 $$DateTime: 2001/06/26 09:55:09 $$Author$
*/
-
-
-public class BeanInfoIndexedProperty
-
-{
+public class BeanInfoIndexedProperty {
//-------------------------------------
-
// Properties
//-------------------------------------
-
// property readMethod
-
Method mReadMethod;
- public Method getReadMethod()
-
- {
+ public Method getReadMethod() {
return mReadMethod;
}
-
//-------------------------------------
-
// property writeMethod
-
Method mWriteMethod;
- public Method getWriteMethod()
-
- {
+ public Method getWriteMethod() {
return mWriteMethod;
}
-
//-------------------------------------
-
// property propertyDescriptor
-
IndexedPropertyDescriptor mIndexedPropertyDescriptor;
- public IndexedPropertyDescriptor getIndexedPropertyDescriptor()
-
- {
+ public IndexedPropertyDescriptor getIndexedPropertyDescriptor() {
return mIndexedPropertyDescriptor;
}
-
//-------------------------------------
/**
* Constructor
*/
-
public BeanInfoIndexedProperty
-
(Method pReadMethod,
-
Method pWriteMethod,
-
IndexedPropertyDescriptor pIndexedPropertyDescriptor)
-
{
-
mReadMethod = pReadMethod;
-
mWriteMethod = pWriteMethod;
-
mIndexedPropertyDescriptor = pIndexedPropertyDescriptor;
-
}
-
//-------------------------------------
-
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]