mirror of
https://github.com/octoleo/plantuml.git
synced 2024-12-22 10:59:01 +00:00
Simplify code a little
This commit is contained in:
parent
659b723dd3
commit
4765c77d92
@ -223,7 +223,7 @@ public class SvekNode implements Positionable, Hideable {
|
|||||||
private Margins shield() {
|
private Margins shield() {
|
||||||
if (shield == null) {
|
if (shield == null) {
|
||||||
this.shield = image.getShield(stringBounder);
|
this.shield = image.getShield(stringBounder);
|
||||||
if (shield.isZero() == false && type != ShapeType.RECTANGLE && type != ShapeType.RECTANGLE_HTML_FOR_PORTS
|
if (!shield.isZero() && type != ShapeType.RECTANGLE && type != ShapeType.RECTANGLE_HTML_FOR_PORTS
|
||||||
&& type != ShapeType.RECTANGLE_WITH_CIRCLE_INSIDE)
|
&& type != ShapeType.RECTANGLE_WITH_CIRCLE_INSIDE)
|
||||||
throw new IllegalStateException();
|
throw new IllegalStateException();
|
||||||
}
|
}
|
||||||
@ -383,7 +383,7 @@ public class SvekNode implements Positionable, Hideable {
|
|||||||
|
|
||||||
public boolean isShielded() {
|
public boolean isShielded() {
|
||||||
if (this.shield != null) {
|
if (this.shield != null) {
|
||||||
return this.shield.isZero() == false;
|
return !this.shield.isZero();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Avoid calculating "shield" size through this.shield() before finishing creation of all SvekLines (#1467)
|
// Avoid calculating "shield" size through this.shield() before finishing creation of all SvekLines (#1467)
|
||||||
|
Loading…
Reference in New Issue
Block a user