alloe missing hive reference

This commit is contained in:
Peter Hormanns 2022-08-08 12:56:32 +02:00
parent ed03299d08
commit c92c739737

View File

@ -244,10 +244,10 @@ public class Pac extends AbstractEntity implements Serializable {
@Override
public String getHiveName() {
if (isNew())
if (hive == null)
return null;
else
return getHive().getHiveName();
return hive.getHiveName();
}
@Override