Skip to content

Commit fa5748b

Browse files
committed
Replace 2x empty lines with a single one
1 parent d55c85f commit fa5748b

17 files changed

+0
-23
lines changed

src/main/java/org/apache/commons/jxpath/JXPathContextFactoryConfigurationError.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ public JXPathContextFactoryConfigurationError(final String msg) {
4747
this.exception = null;
4848
}
4949

50-
5150
/**
5251
* Create a new {@code JXPathContextFactoryConfigurationError} with a
5352
* given {@code Exception} base cause of the error.
@@ -73,7 +72,6 @@ public JXPathContextFactoryConfigurationError(final Exception e, final String ms
7372
this.exception = e;
7473
}
7574

76-
7775
/**
7876
* Gets the message (if any) for this error . If there is no
7977
* message for the exception and there is an encapsulated

src/main/java/org/apache/commons/jxpath/JXPathException.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public JXPathException(final String msg) {
4646
this.exception = null;
4747
}
4848

49-
5049
/**
5150
* Create a new {@code JXPathException} with a
5251
* given {@code Throwable} base cause of the error.
@@ -71,7 +70,6 @@ public JXPathException(final String msg, final Throwable e) {
7170
this.exception = e;
7271
}
7372

74-
7573
/**
7674
* Gets the message (if any) for this error . If there is no
7775
* message for the exception and there is an encapsulated

src/main/java/org/apache/commons/jxpath/ri/QName.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import java.io.Serializable;
2020

21-
2221
/**
2322
* A qualified name: a combination of an optional namespace prefix
2423
* and an local name.

src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/DynaBeanPointer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import org.apache.commons.jxpath.ri.model.beans.PropertyOwnerPointer;
2525
import org.apache.commons.jxpath.ri.model.beans.PropertyPointer;
2626

27-
2827
/**
2928
* A Pointer that points to a {@link DynaBean}. If the target DynaBean is Serializable,
3029
* so should this instance be.

src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/DynaBeanPropertyPointer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ else if (isIndexedProperty()) {
258258
}
259259
}
260260

261-
262261
/**
263262
* Convert a value to the appropriate property type.
264263
* @param value to convert

src/main/java/org/apache/commons/jxpath/ri/parser/SimpleCharStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ protected void ExpandBuff(final boolean wrapAround)
8989
throw new Error(t.getMessage());
9090
}
9191

92-
9392
bufsize += 2048;
9493
available = bufsize;
9594
tokenBegin = 0;

src/main/java/org/apache/commons/jxpath/ri/parser/TokenMgrError.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,9 @@ public TokenMgrError(final boolean EOFSeen, final int lexState, final int errorL
164164
character = curChar;
165165
}
166166

167-
168167
private int position;
169168
private char character;
170169

171-
172170
public int getPosition(){
173171
return position;
174172
}

src/main/java/org/apache/commons/jxpath/ri/parser/XPathParser.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -462,18 +462,15 @@ final public Object parseExpression() throws ParseException {
462462
//}
463463

464464

465-
466465
// See XPath Syntax (http://www.w3.org/TR/xpath )
467466

468-
469467
//void XPath() :
470468
//{}
471469
//{
472470
// LocationPath()
473471
// <EOF>
474472
//}
475473

476-
477474
/* [1] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath */
478475
final public Object LocationPath() throws ParseException {
479476
Object ex = null;
@@ -614,7 +611,6 @@ final public Object RelativeLocationPath() throws ParseException {
614611
/* [3] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | AbbreviatedRelativeLocationPath */
615612
/* [11] AbbreviatedRelativeLocationPath ::= RelativeLocationPath '//' Step */
616613

617-
618614
/*--------------------*/
619615
/* 2.1 Location Steps */
620616
/*--------------------*/

src/test/java/org/apache/commons/jxpath/TestNull.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*/
1717
package org.apache.commons.jxpath;
1818

19-
2019
/**
2120
* General purpose test bean for JUnit tests for the "jxpath" component.
2221
*/

src/test/java/org/apache/commons/jxpath/ri/axes/RecursiveBean.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*/
1717
package org.apache.commons.jxpath.ri.axes;
1818

19-
2019
/**
2120
* This bean is used to test infinite recursion protection in
2221
* descendant search contexts.

0 commit comments

Comments
 (0)