Fix exception on first normalize

This commit is contained in:
2023-07-28 16:23:57 +01:00
parent da197c64c7
commit 091a62be2f

View File

@@ -2147,7 +2147,9 @@ public class Sentence extends BookTreeNode implements Cacheable {
} }
public void clearPeakGainPoints() { public void clearPeakGainPoints() {
gainPoints.clear(); if (gainPoints != null) {
gainPoints.clear();
}
} }
public void autoAddPeakGainPoints() { public void autoAddPeakGainPoints() {