mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Stylecheck fixes.
This commit is contained in:
parent
706aa0795b
commit
9e9a859e97
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue