mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix incorrect variable used
Signed-off-by: karuppayya <karuppayyar@qubole.com>
This commit is contained in:
parent
42d92ac964
commit
b837c6cb0b
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ public class ParagraphRuntimeInfo {
|
|||
|
||||
public ParagraphRuntimeInfo(String propertyName, String label,
|
||||
String group, String intpSettingId) {
|
||||
if (interpreterSettingId == null) {
|
||||
if (intpSettingId == null) {
|
||||
throw new IllegalArgumentException("Interpreter setting Id cannot be null");
|
||||
}
|
||||
this.propertyName = propertyName;
|
||||
|
|
|
|||
Loading…
Reference in a new issue