mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix indentation build error.
This commit is contained in:
parent
6c1acf3c0b
commit
7a7f99372c
1 changed files with 9 additions and 9 deletions
|
|
@ -297,18 +297,18 @@ public class Note implements Serializable, JobListener {
|
|||
public List<Map<String, String>> generateParagraphsInfo (){
|
||||
List<Map<String, String>> paragraphsInfo = new LinkedList<>();
|
||||
synchronized (paragraphs) {
|
||||
for (Paragraph p : paragraphs) {
|
||||
Map<String, String> info = new HashMap<>();
|
||||
info.put("id", p.getId());
|
||||
info.put("status", p.getStatus().toString());
|
||||
info.put("started", p.getDateStarted().toString());
|
||||
info.put("finished", p.getDateFinished().toString());
|
||||
paragraphsInfo.add(info);
|
||||
for (Paragraph p : paragraphs) {
|
||||
Map<String, String> info = new HashMap<>();
|
||||
info.put("id", p.getId());
|
||||
info.put("status", p.getStatus().toString());
|
||||
info.put("started", p.getDateStarted().toString());
|
||||
info.put("finished", p.getDateFinished().toString());
|
||||
paragraphsInfo.add(info);
|
||||
}
|
||||
}
|
||||
return paragraphsInfo;
|
||||
return paragraphsInfo;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Run all paragraphs sequentially.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue