mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
refactor: Add private to member vars
This commit is contained in:
parent
f36fc74216
commit
afc456ddd6
1 changed files with 6 additions and 6 deletions
|
|
@ -36,12 +36,12 @@ public class PythonCondaInterpreter extends Interpreter {
|
|||
public static final String CONDA_PYTHON_PATH = "/bin/python";
|
||||
public static final String DEFAULT_ZEPPELIN_PYTHON = "python";
|
||||
|
||||
Pattern condaEnvListPattern = Pattern.compile("([^\\s]*)[\\s*]*\\s(.*)");
|
||||
Pattern listEnvPattern = Pattern.compile("env\\s*list\\s?");
|
||||
Pattern activatePattern = Pattern.compile("activate\\s*(.*)");
|
||||
Pattern deactivatePattern = Pattern.compile("deactivate");
|
||||
Pattern helpPattern = Pattern.compile("help");
|
||||
Pattern infoPattern = Pattern.compile("info");
|
||||
private Pattern condaEnvListPattern = Pattern.compile("([^\\s]*)[\\s*]*\\s(.*)");
|
||||
private Pattern listEnvPattern = Pattern.compile("env\\s*list\\s?");
|
||||
private Pattern activatePattern = Pattern.compile("activate\\s*(.*)");
|
||||
private Pattern deactivatePattern = Pattern.compile("deactivate");
|
||||
private Pattern helpPattern = Pattern.compile("help");
|
||||
private Pattern infoPattern = Pattern.compile("info");
|
||||
|
||||
public PythonCondaInterpreter(Properties property) {
|
||||
super(property);
|
||||
|
|
|
|||
Loading…
Reference in a new issue