mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-22 21:15:09 +00:00
Temporary fix NPE
This commit is contained in:
parent
d1e5f82084
commit
041b2b45b9
@ -331,8 +331,10 @@ public class EntityImageDescription extends AbstractEntityImage {
|
||||
}
|
||||
final SvekNode node = bibliotekon.getNode(getEntity());
|
||||
final Shadowable hexagon = node.getPolygon();
|
||||
hexagon.setDeltaShadow(ctx.getDeltaShadow());
|
||||
ug.draw(hexagon);
|
||||
if (hexagon != null) {
|
||||
hexagon.setDeltaShadow(ctx.getDeltaShadow());
|
||||
ug.draw(hexagon);
|
||||
}
|
||||
}
|
||||
|
||||
public ShapeType getShapeType() {
|
||||
|
Loading…
Reference in New Issue
Block a user