Skip to content

Commit

Permalink
Simply refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Sep 24, 2023
1 parent 7c07d0f commit d5d9c66
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public final class CustomInlineExpressionParserFixture implements InlineExpressi

@Override
public void init(final Properties props) {
this.inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public final class EspressoInlineExpressionParser implements InlineExpressionPar

@Override
public void init(final Properties props) {
this.inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public final class GroovyInlineExpressionParser implements InlineExpressionParse

@Override
public void init(final Properties props) {
this.inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public final class PureListInlineExpressionParser implements InlineExpressionPar

@Override
public void init(final Properties props) {
this.inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
}

@Override
Expand Down

0 comments on commit d5d9c66

Please sign in to comment.