We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a061a19 + 7654dae commit 81b4c32Copy full SHA for 81b4c32
src/main/java/com/jaspersoft/jasperserver/jaxrs/client/dto/settings/DashboardSettings.java
@@ -14,7 +14,7 @@ public DashboardSettings() {
14
}
15
16
public DashboardSettings(DashboardSettings other) {
17
- this.newItemsRegistry = new LinkedList<ItemRegistry>(other.newItemsRegistry);
+ this.newItemsRegistry = (other.newItemsRegistry != null) ? new LinkedList<ItemRegistry>(other.newItemsRegistry) : null;
18
19
20
public List<ItemRegistry> getNewItemsRegistry() {
0 commit comments