Skip to content

Commit 0401e69

Browse files
committed
Javadoc
Add an empty line before a Javadoc comment
1 parent e2ffa62 commit 0401e69

File tree

10 files changed

+17
-0
lines changed

10 files changed

+17
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
* @since 1.9.1
4040
*/
4141
final class BeanIntrospectionData {
42+
4243
/**
4344
* Initializes the map with the names of the write methods for the supported properties. The method names - if defined - need to be stored separately
4445
* because they may get lost when the GC claims soft references used by the {@code PropertyDescriptor} objects.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* @since 1.9
3535
*/
3636
final class DefaultIntrospectionContext implements IntrospectionContext {
37+
3738
/** The current class for introspection. */
3839
private final Class<?> currentClass;
3940

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
* @since 1.9
6969
*/
7070
public class FluentPropertyBeanIntrospector implements BeanIntrospector {
71+
7172
/** The default prefix for write methods. */
7273
public static final String DEFAULT_WRITE_METHOD_PREFIX = "set";
7374

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,20 +133,28 @@ public class LazyDynaBean implements DynaBean {
133133

134134
/** BigInteger Zero */
135135
protected static final BigInteger BigInteger_ZERO = new BigInteger("0");
136+
136137
/** BigDecimal Zero */
137138
protected static final BigDecimal BigDecimal_ZERO = new BigDecimal("0");
139+
138140
/** Character Space */
139141
protected static final Character Character_SPACE = Character.valueOf(' ');
142+
140143
/** Byte Zero */
141144
protected static final Byte Byte_ZERO = Byte.valueOf((byte) 0);
145+
142146
/** Short Zero */
143147
protected static final Short Short_ZERO = Short.valueOf((short) 0);
148+
144149
/** Integer Zero */
145150
protected static final Integer Integer_ZERO = Integer.valueOf(0);
151+
146152
/** Long Zero */
147153
protected static final Long Long_ZERO = Long.valueOf(0);
154+
148155
/** Float Zero */
149156
protected static final Float Float_ZERO = Float.valueOf((byte) 0);
157+
150158
/** Double Zero */
151159
protected static final Double Double_ZERO = Double.valueOf((byte) 0);
152160

src/test/java/org/apache/commons/beanutils2/BeanIntrospectionDataTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* Test class for {@code BeanIntrospectionData}.
3232
*/
3333
class BeanIntrospectionDataTest {
34+
3435
/** Constant for the test bean class. */
3536
private static final Class<?> BEAN_CLASS = FluentIntrospectionTestBean.class;
3637

src/test/java/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospectorTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class SuppressPropertiesBeanIntrospectorTest {
3838
* A test implementation of IntrospectionContext which collects the properties which have been removed.
3939
*/
4040
private static class IntrospectionContextTestImpl implements IntrospectionContext {
41+
4142
/** Stores the names of properties which have been removed. */
4243
private final Set<String> removedProperties = new HashSet<>();
4344

src/test/java/org/apache/commons/beanutils2/bugs/Jira456Test.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* issue BEANUTILS-456</a>.
3333
*/
3434
class Jira456Test {
35+
3536
/** Constant for the name of the test property. */
3637
private static final String TEST_PROP = "fluentGetProperty";
3738

src/test/java/org/apache/commons/beanutils2/bugs/Jira458Test.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* @see <a href="https://issues.apache.org/jira/browse/BEANUTILS-458">https://issues.apache.org/jira/browse/BEANUTILS-458</a>
3131
*/
3232
class Jira458Test {
33+
3334
/**
3435
* Helper method for testing a conversion with null as default.
3536
*

src/test/java/org/apache/commons/beanutils2/bugs/Jira463Test.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* @see <a href="https://issues.apache.org/jira/browse/BEANUTILS-463">https://issues.apache.org/jira/browse/BEANUTILS-463</a>
3030
*/
3131
class Jira463Test {
32+
3233
/**
3334
* Tests that with a specialized {@code BeanIntrospector} implementation the class property can be suppressed.
3435
*/

src/test/java/org/apache/commons/beanutils2/converters/StringConverterTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* Test case for {@code StringConverter}.
2626
*/
2727
class StringConverterTest {
28+
2829
/** The converter to be tested. */
2930
private StringConverter converter;
3031

0 commit comments

Comments
 (0)