Unable to import old reports created before 6.0 #PL-6210

This commit is contained in:
Yuriy Artamonov 2015-10-20 07:38:55 +00:00
parent a7bdf2f4db
commit 224339ceea

View File

@ -24,6 +24,9 @@ public class ViewProperty implements Serializable {
private FetchMode fetchMode = FetchMode.AUTO;
@Deprecated
private boolean lazy = false;
public ViewProperty(String name, @Nullable View view) {
this(name, view, FetchMode.AUTO);
}