Stylecheck fixes.

This commit is contained in:
Vincenzo Selvaggio 2018-07-25 16:14:57 +01:00
parent 706aa0795b
commit 9e9a859e97
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ import java.util.UUID;
*/
public class JavaInterpreter extends Interpreter {
private final static Logger logger = LoggerFactory.getLogger(JavaInterpreter.class);
private static final Logger logger = LoggerFactory.getLogger(JavaInterpreter.class);
public JavaInterpreter(Properties property) {
super(property);

View file

@ -33,7 +33,7 @@ import static org.junit.Assert.assertEquals;
public class JavaInterpreterUtilsTest {
private final static String TABLE_RESULT_1 = "%table\n" +
private static final String TABLE_RESULT_1 = "%table\n" +
"Word\tCount\n" +
"world\t5\n" +
"hello\t4";