summaryrefslogtreecommitdiff
path: root/src/net/sourceforge/plantuml/ugraphic/eps/DriverLineEps.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/sourceforge/plantuml/ugraphic/eps/DriverLineEps.java')
-rw-r--r--src/net/sourceforge/plantuml/ugraphic/eps/DriverLineEps.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/sourceforge/plantuml/ugraphic/eps/DriverLineEps.java b/src/net/sourceforge/plantuml/ugraphic/eps/DriverLineEps.java
index f22ff0c..c8794ca 100644
--- a/src/net/sourceforge/plantuml/ugraphic/eps/DriverLineEps.java
+++ b/src/net/sourceforge/plantuml/ugraphic/eps/DriverLineEps.java
@@ -2,7 +2,7 @@
* PlantUML : a free UML diagram generator
* ========================================================================
*
- * (C) Copyright 2009-2017, Arnaud Roques
+ * (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
@@ -72,7 +72,7 @@ public class DriverLineEps implements UDriver<EpsGraphics> {
}
eps.setStrokeColor(mapper.getMappedColor(param.getColor()));
- eps.setStrokeWidth("" + param.getStroke().getThickness(), param.getStroke().getDashVisible(), param.getStroke()
+ eps.setStrokeWidth(param.getStroke().getThickness(), param.getStroke().getDashVisible(), param.getStroke()
.getDashSpace());
eps.epsLine(x, y, x2, y2);
}