Skip to content

Commit

Permalink
Remove useless javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Sep 24, 2023
1 parent ae87aa2 commit 7c07d0f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ public final class EspressoInlineExpressionParser implements InlineExpressionPar
JAVA_CLASSPATH = dir + File.separator + "groovy.jar";
}

/**
* Initialize SPI.
*
* @param props A Properties instance that carries inlineExpression.
* And for compatibility reasons, inlineExpression allows to be null.
*/
@Override
public void init(final Properties props) {
this.inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ public final class GroovyInlineExpressionParser implements InlineExpressionParse

private String inlineExpression;

/**
* Initialize SPI.
*
* @param props A Properties instance that carries inlineExpression.
* And for compatibility reasons, inlineExpression allows to be null.
*/
@Override
public void init(final Properties props) {
this.inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ public final class PureListInlineExpressionParser implements InlineExpressionPar

private String inlineExpression;

/**
* Initialize SPI.
*
* @param props A properties instance that carries inlineExpression, and for compatibility reasons, inlineExpression allows to be null.
*/
@Override
public void init(final Properties props) {
this.inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
Expand Down

0 comments on commit 7c07d0f

Please sign in to comment.