Skip to content

Commit 2bf5327

Browse files
committed
Javadoc
Add an empty line before a Javadoc comment
1 parent c929e71 commit 2bf5327

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectParamRule.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
public class ObjectParamRule
4343
extends Rule
4444
{
45+
4546
/**
4647
* The attribute which we are attempting to match
4748
*/

commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/NodeCreateRuleProvider.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,46 +56,57 @@ public enum NodeType
5656
* @see org.w3c.dom.Node#ATTRIBUTE_NODE
5757
*/
5858
ATTRIBUTE( ATTRIBUTE_NODE ),
59+
5960
/**
6061
* @see org.w3c.dom.Node#CDATA_SECTION_NODE
6162
*/
6263
CDATA( CDATA_SECTION_NODE ),
64+
6365
/**
6466
* @see org.w3c.dom.Node#COMMENT_NODE
6567
*/
6668
COMMENT( COMMENT_NODE ),
69+
6770
/**
6871
* @see org.w3c.dom.Node#DOCUMENT_FRAGMENT_NODE
6972
*/
7073
DOCUMENT_FRAGMENT( DOCUMENT_FRAGMENT_NODE ),
74+
7175
/**
7276
* @see org.w3c.dom.Node#DOCUMENT_NODE
7377
*/
7478
DOCUMENT( DOCUMENT_NODE ),
79+
7580
/**
7681
* @see org.w3c.dom.Node#DOCUMENT_TYPE_NODE
7782
*/
7883
DOCUMENT_TYPE( DOCUMENT_TYPE_NODE ),
84+
7985
/**
8086
* @see org.w3c.dom.Node#ELEMENT_NODE
8187
*/
8288
ELEMENT( ELEMENT_NODE ),
89+
8390
/**
8491
* @see org.w3c.dom.Node#ENTITY_NODE
8592
*/
8693
ENTITY( ENTITY_NODE ),
94+
8795
/**
8896
* @see org.w3c.dom.Node#ENTITY_REFERENCE_NODE
8997
*/
9098
ENTITY_REFERENCE( ENTITY_REFERENCE_NODE ),
99+
91100
/**
92101
* @see org.w3c.dom.Node#NOTATION_NODE
93102
*/
94103
NOTATION( NOTATION_NODE ),
104+
95105
/**
96106
* @see org.w3c.dom.Node#PROCESSING_INSTRUCTION_NODE
97107
*/
98108
PROCESSING_INSTRUCTION( PROCESSING_INSTRUCTION_NODE ),
109+
99110
/**
100111
* @see org.w3c.dom.Node#TEXT_NODE
101112
*/

0 commit comments

Comments
 (0)