Skip to content

Commit

Permalink
Normalize end of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 20, 2024
1 parent 0623d8d commit 71a7a89
Show file tree
Hide file tree
Showing 32 changed files with 0 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
public final class ASTAmbiguous extends JexlNode {

/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public class ASTAnnotation extends JexlNode {
/**
*
*/
private static final long serialVersionUID = 1L;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public final class ASTArrayLiteral extends ExtensibleNode {
/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public class ASTIdentifier extends JexlNode {
/**
*
*/
private static final long serialVersionUID = 1L;
protected String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public class ASTIdentifierAccess extends JexlNode {
/**
*
*/
private static final long serialVersionUID = 1L;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
*/
public class ASTIdentifierAccessSafe extends ASTIdentifierAccess {
/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
*/
public class ASTIdentifierAccessSafeJxlt extends ASTIdentifierAccessJxlt {
/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public final class ASTJexlLambda extends ASTJexlScript {
/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

public final class ASTMapLiteral extends ExtensibleNode {
/**
*
*/
private static final long serialVersionUID = 1L;
ASTMapLiteral(final int id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public class ASTNamespaceIdentifier extends ASTIdentifier {
/**
*
*/
private static final long serialVersionUID = 1L;
private String namespace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

public final class ASTNumberLiteral extends JexlNode implements JexlNode.Constant<Number> {
/**
*
*/
private static final long serialVersionUID = 1L;
/** The number parser. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public class ASTQualifiedIdentifier extends JexlNode {
/**
*
*/
private static final long serialVersionUID = 1L;
protected String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

public final class ASTReferenceExpression extends JexlNode {
/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
public final class ASTRegexLiteral extends JexlNode implements JexlNode.Constant<Pattern> {

/**
*
*/
private static final long serialVersionUID = 1L;
/** The actual literal value; the inherited 'value' member may host a cached getter. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

public final class ASTSetLiteral extends ExtensibleNode {
/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

public final class ASTStringLiteral extends JexlNode implements JexlNode.Constant<String> {
/**
*
*/
private static final long serialVersionUID = 1L;
/** The actual literal value; the inherited 'value' member may host a cached getter. */
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/jexl3/parser/ASTVar.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
public class ASTVar extends ASTIdentifier {
/**
*
*/
private static final long serialVersionUID = 1L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
*/
public abstract class JexlNode extends SimpleNode {
/**
*
*/
private static final long serialVersionUID = 1L;
// line + column encoded: up to 4096 columns (ie 20 bits for line + 12 bits for column)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
*/
public final class NumberParser implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
/** The type literal value. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
*/
public class SimpleNode implements Node {
/**
*
*/
private static final long serialVersionUID = 1L;
/** The parent node. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

/**
* Tests for array access operator []
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public class ArrayAccessTest extends JexlTestCase {
Expand Down
2 changes: 0 additions & 2 deletions src/test/java/org/apache/commons/jexl3/AssignTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

/**
* Test cases for assignment.
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public class AssignTest extends JexlTestCase {
Expand Down Expand Up @@ -91,7 +90,6 @@ public void testAmbiguous() {

/**
* Make sure bean assignment works
*
*/
@Test
public void testAntish() {
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/jexl3/IfTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

/**
* Test cases for the if statement.
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public class IfTest extends JexlTestCase {
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/jexl3/JexlTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@

/**
* Simple test cases.
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public final class JexlTest extends JexlTestCase {
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/jexl3/MethodTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

/**
* Tests for calling methods on objects
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public class MethodTest extends JexlTestCase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
* ({@link org.apache.commons.jexl3.JexlEngine#createExpression(String)} and
* {@link org.apache.commons.jexl3.JexlEngine#createScript(String)} should throw
* {@link org.apache.commons.jexl3.JexlException}s).
*
*/
public class ParseFailuresTest extends JexlTestCase {

Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/jexl3/SideEffectTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@

/**
* Tests for array access operator []
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public class SideEffectTest extends JexlTestCase {
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/jexl3/StrategyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

/**
* Test cases for the if statement.
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public class StrategyTest extends JexlTestCase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

/**
* Simple example to show how to access arrays.
*
*/
public class ArrayTest {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

/**
* Simple example to show how to access method and properties.
*
*/
public class MethodPropertyTest {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

/**
* Tests for checking introspection discovery.
*
*/
public class DiscoveryTest extends JexlTestCase {
public static class Bean {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

/**
* Simple tests
*
*/
@SuppressWarnings({"UnnecessaryBoxing", "AssertEqualsBetweenInconvertibleTypes"})
public class AsserterTest extends JexlTestCase {
Expand Down

0 comments on commit 71a7a89

Please sign in to comment.