Skip to content

Commit c4a06b2

Browse files
committed
No need for blank Javadoc lines between Javadoc @ tags
1 parent 17d3f98 commit c4a06b2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+0
-284
lines changed

src/main/java/org/apache/commons/beanutils2/BasicDynaBean.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ public BasicDynaBean(final DynaClass dynaClass) {
8383
* @param name Name of the property to check
8484
* @param key Name of the key to check
8585
* @return {@code true} if the mapped property contains a value for the specified key, otherwise {@code false}
86-
*
8786
* @throws IllegalArgumentException if there is no property of the specified name
8887
*/
8988
@Override
@@ -101,7 +100,6 @@ public boolean contains(final String name, final String key) {
101100
*
102101
* @param name Name of the property whose value is to be retrieved
103102
* @return The property's value
104-
*
105103
* @throws IllegalArgumentException if there is no property of the specified name
106104
*/
107105
@Override
@@ -150,7 +148,6 @@ public Object get(final String name) {
150148
* @param name Name of the property whose value is to be retrieved
151149
* @param index Index of the value to be retrieved
152150
* @return The indexed property's value
153-
*
154151
* @throws IllegalArgumentException if there is no property of the specified name
155152
* @throws IllegalArgumentException if the specified property exists, but is not indexed
156153
* @throws IndexOutOfBoundsException if the specified index is outside the range of the underlying property
@@ -175,7 +172,6 @@ public Object get(final String name, final int index) {
175172
* @param name Name of the property whose value is to be retrieved
176173
* @param key Key of the value to be retrieved
177174
* @return The mapped property's value
178-
*
179175
* @throws IllegalArgumentException if there is no property of the specified name
180176
* @throws IllegalArgumentException if the specified property exists, but is not mapped
181177
*/
@@ -205,7 +201,6 @@ public DynaClass getDynaClass() {
205201
*
206202
* @param name Name of the property for which to retrieve the descriptor
207203
* @return The property descriptor
208-
*
209204
* @throws IllegalArgumentException if this is not a valid property name for our DynaClass
210205
*/
211206
protected DynaProperty getDynaProperty(final String name) {
@@ -264,7 +259,6 @@ protected boolean isAssignable(final Class<?> dest, final Class<?> source) {
264259
*
265260
* @param name Name of the property for which a value is to be removed
266261
* @param key Key of the value to be removed
267-
*
268262
* @throws IllegalArgumentException if there is no property of the specified name
269263
*/
270264
@Override
@@ -287,7 +281,6 @@ private void requireMappedValue(final String name, final String key, final Objec
287281
* @param name Name of the property whose value is to be set
288282
* @param index Index of the property to be set
289283
* @param value Value to which this property is to be set
290-
*
291284
* @throws ConversionException if the specified value cannot be converted to the type required for this property
292285
* @throws IllegalArgumentException if there is no property of the specified name
293286
* @throws IllegalArgumentException if the specified property exists, but is not indexed
@@ -319,7 +312,6 @@ public void set(final String name, final int index, final Object value) {
319312
*
320313
* @param name Name of the property whose value is to be set
321314
* @param value Value to which this property is to be set
322-
*
323315
* @throws ConversionException if the specified value cannot be converted to the type required for this property
324316
* @throws IllegalArgumentException if there is no property of the specified name
325317
* @throws NullPointerException if an attempt is made to set a primitive property to null
@@ -344,7 +336,6 @@ public void set(final String name, final Object value) {
344336
* @param name Name of the property whose value is to be set
345337
* @param key Key of the property to be set
346338
* @param value Value to which this property is to be set
347-
*
348339
* @throws ConversionException if the specified value cannot be converted to the type required for this property
349340
* @throws IllegalArgumentException if there is no property of the specified name
350341
* @throws IllegalArgumentException if the specified property exists, but is not mapped

src/main/java/org/apache/commons/beanutils2/BasicDynaClass.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ public DynaProperty[] getDynaProperties() {
140140
*
141141
* @param name Name of the dynamic property for which a descriptor is requested
142142
* @return The descriptor for the specified property
143-
*
144143
* @throws IllegalArgumentException if no property name is specified
145144
*/
146145
@Override
@@ -186,7 +185,6 @@ public DynaBean newInstance() throws IllegalAccessException, InstantiationExcept
186185
* {@code DynaBean} interface.
187186
*
188187
* @param dynaBeanClass The new Class object
189-
*
190188
* @throws IllegalArgumentException if the specified Class does not implement the {@code DynaBean} interface
191189
*/
192190
protected void setDynaBeanClass(final Class<?> dynaBeanClass) {

src/main/java/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
*
6565
* @param <T> The type of the input to the operation
6666
* @param <V> The property value type.
67-
*
6867
* @see org.apache.commons.beanutils2.PropertyUtils
6968
* @see java.util.function.Consumer
7069
*/

src/main/java/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
*
9595
* @param <T> The type of the input to the predicate.
9696
* @param <V> The property value type.
97-
*
9897
* @see org.apache.commons.beanutils2.PropertyUtils
9998
* @see java.util.function.Predicate
10099
*/

src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
*
5959
* @param <T> the type of the input to the function
6060
* @param <R> the type of the result of the function
61-
*
6261
* @see org.apache.commons.beanutils2.PropertyUtils
6362
* @see java.util.function.Function
6463
*/

src/main/java/org/apache/commons/beanutils2/BeanUtils.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ public class BeanUtils {
5252
*
5353
* @param bean Bean to be cloned
5454
* @return the cloned bean
55-
*
5655
* @throws IllegalAccessException if the caller does not have access to the property accessor method
5756
* @throws InstantiationException if a new instance of the bean's class cannot be instantiated
5857
* @throws InvocationTargetException if the property accessor method throws an exception
@@ -76,7 +75,6 @@ public static Object cloneBean(final Object bean) throws IllegalAccessException,
7675
*
7776
* @param dest Destination bean whose properties are modified
7877
* @param orig Origin bean whose properties are retrieved
79-
*
8078
* @throws IllegalAccessException if the caller does not have access to the property accessor method
8179
* @throws IllegalArgumentException if the {@code dest} or {@code orig</code> argument is null or if the <code>dest} property type is different from the
8280
* source type and the relevant converter has not been registered.
@@ -100,7 +98,6 @@ public static void copyProperties(final Object dest, final Object orig) throws I
10098
* @param bean Bean on which setting is to be performed
10199
* @param name Property name (can be nested/indexed/mapped/combo)
102100
* @param value Value to be set
103-
*
104101
* @throws IllegalAccessException if the caller does not have access to the property accessor method
105102
* @throws InvocationTargetException if the property accessor method throws an exception
106103
* @see BeanUtilsBean#copyProperty
@@ -133,7 +130,6 @@ public static <K, V> Map<K, V> createCache() {
133130
*
134131
* @param bean Bean whose properties are to be extracted
135132
* @return Map of property descriptors
136-
*
137133
* @throws IllegalAccessException if the caller does not have access to the property accessor method
138134
* @throws InvocationTargetException if the property accessor method throws an exception
139135
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -156,7 +152,6 @@ public static Map<String, String> describe(final Object bean) throws IllegalAcce
156152
* @param bean Bean whose property is to be extracted
157153
* @param name Name of the property to be extracted
158154
* @return The array property value
159-
*
160155
* @throws IllegalAccessException if the caller does not have access to the property accessor method
161156
* @throws InvocationTargetException if the property accessor method throws an exception
162157
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -180,7 +175,6 @@ public static String[] getArrayProperty(final Object bean, final String name)
180175
* @param bean Bean whose property is to be extracted
181176
* @param name {@code propertyname[index]} of the property value to be extracted
182177
* @return The indexed property's value, converted to a String
183-
*
184178
* @throws IllegalAccessException if the caller does not have access to the property accessor method
185179
* @throws InvocationTargetException if the property accessor method throws an exception
186180
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -205,7 +199,6 @@ public static String getIndexedProperty(final Object bean, final String name)
205199
* @param name Simple property name of the property value to be extracted
206200
* @param index Index of the property value to be extracted
207201
* @return The indexed property's value, converted to a String
208-
*
209202
* @throws IllegalAccessException if the caller does not have access to the property accessor method
210203
* @throws InvocationTargetException if the property accessor method throws an exception
211204
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -230,7 +223,6 @@ public static String getIndexedProperty(final Object bean, final String name, fi
230223
* @param bean Bean whose property is to be extracted
231224
* @param name {@code propertyname(index)} of the property value to be extracted
232225
* @return The mapped property's value, converted to a String
233-
*
234226
* @throws IllegalAccessException if the caller does not have access to the property accessor method
235227
* @throws InvocationTargetException if the property accessor method throws an exception
236228
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -256,7 +248,6 @@ public static String getMappedProperty(final Object bean, final String name)
256248
* @param name Simple property name of the property value to be extracted
257249
* @param key Lookup key of the property value to be extracted
258250
* @return The mapped property's value, converted to a String
259-
*
260251
* @throws IllegalAccessException if the caller does not have access to the property accessor method
261252
* @throws InvocationTargetException if the property accessor method throws an exception
262253
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -281,7 +272,6 @@ public static String getMappedProperty(final Object bean, final String name, fin
281272
* @param bean Bean whose property is to be extracted
282273
* @param name Possibly nested name of the property to be extracted
283274
* @return The nested property's value, converted to a String
284-
*
285275
* @throws IllegalAccessException if the caller does not have access to the property accessor method
286276
* @throws IllegalArgumentException if a nested reference to a property returns null
287277
* @throws InvocationTargetException if the property accessor method throws an exception
@@ -307,7 +297,6 @@ public static String getNestedProperty(final Object bean, final String name)
307297
* @param bean Bean whose property is to be extracted
308298
* @param name Possibly indexed and/or nested name of the property to be extracted
309299
* @return The property's value, converted to a String
310-
*
311300
* @throws IllegalAccessException if the caller does not have access to the property accessor method
312301
* @throws InvocationTargetException if the property accessor method throws an exception
313302
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -331,7 +320,6 @@ public static String getProperty(final Object bean, final String name) throws Il
331320
* @param bean Bean whose property is to be extracted
332321
* @param name Name of the property to be extracted
333322
* @return The property's value, converted to a String
334-
*
335323
* @throws IllegalAccessException if the caller does not have access to the property accessor method
336324
* @throws InvocationTargetException if the property accessor method throws an exception
337325
* @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -355,7 +343,6 @@ public static String getSimpleProperty(final Object bean, final String name)
355343
*
356344
* @param bean JavaBean whose properties are being populated
357345
* @param properties Map keyed by property name, with the corresponding (String or String[]) value(s) to be set
358-
*
359346
* @throws IllegalAccessException if the caller does not have access to the property accessor method
360347
* @throws InvocationTargetException if the property accessor method throws an exception
361348
* @see BeanUtilsBean#populate
@@ -377,7 +364,6 @@ public static void populate(final Object bean, final Map<String, ? extends Objec
377364
* @param bean Bean on which setting is to be performed
378365
* @param name Property name (can be nested/indexed/mapped/combo)
379366
* @param value Value to be set
380-
*
381367
* @throws IllegalAccessException if the caller does not have access to the property accessor method
382368
* @throws InvocationTargetException if the property accessor method throws an exception
383369
* @see BeanUtilsBean#setProperty

0 commit comments

Comments
 (0)