Skip to content

Commit

Permalink
Make logs final
Browse files Browse the repository at this point in the history
  • Loading branch information
danrivcap authored and fmbenhassine committed Apr 17, 2018
1 parent 707d875 commit 67cd8a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -38,7 +38,7 @@
*/
public class MVELAction implements Action {

private static Logger LOGGER = LoggerFactory.getLogger(MVELAction.class);
private static final Logger LOGGER = LoggerFactory.getLogger(MVELAction.class);

private String expression;
private Serializable compiledExpression;
Expand Down
Expand Up @@ -38,7 +38,7 @@
*/
public class MVELCondition implements Condition {

private static Logger LOGGER = LoggerFactory.getLogger(MVELCondition.class);
private static final Logger LOGGER = LoggerFactory.getLogger(MVELCondition.class);

private String expression;
private Serializable compiledExpression;
Expand Down

0 comments on commit 67cd8a2

Please sign in to comment.