Fix checkstyle

This commit is contained in:
karuppayya 2016-11-21 20:18:59 +05:30 committed by Karup
parent f16422f297
commit 9b3a3e28e7

View file

@ -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);
}