mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix checkstyle
This commit is contained in:
parent
f16422f297
commit
9b3a3e28e7
1 changed files with 3 additions and 3 deletions
|
|
@ -405,11 +405,11 @@ public class InterpreterSetting {
|
|||
this.interpreterRunner = interpreterRunner;
|
||||
=======
|
||||
public void addNoteToPara(String noteId, String paraId) {
|
||||
if(noteIdToParaIdsetMap == null) {
|
||||
noteIdToParaIdsetMap = new HashMap<>();
|
||||
if (noteIdToParaIdsetMap == null) {
|
||||
noteIdToParaIdsetMap = new HashMap<>();
|
||||
}
|
||||
Set<String> paraIdSet = noteIdToParaIdsetMap.get(noteId);
|
||||
if(paraIdSet == null) {
|
||||
if (paraIdSet == null) {
|
||||
paraIdSet = new HashSet<>();
|
||||
noteIdToParaIdsetMap.put(noteId, paraIdSet);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue