From: Giovanni Mascellani Subject: [PATCH] patch/geogebra The visibility of a field is moved from private to protected, so GeoGebra can extend that class. Signed-off-by: Giovanni Mascellani --- .../org/freehep/graphicsio/svg/SVGGraphics2D.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main/java/org/freehep/graphicsio/svg/SVGGraphics2D.java b/src/main/java/org/freehep/graphicsio/svg/SVGGraphics2D.java index 6c348eb..c9130bb 100644 --- a/src/main/java/org/freehep/graphicsio/svg/SVGGraphics2D.java +++ b/src/main/java/org/freehep/graphicsio/svg/SVGGraphics2D.java @@ -154,7 +154,7 @@ public class SVGGraphics2D extends AbstractVectorGraphicsIO { // The private writer used for this file. private OutputStream ros; - private PrintWriter os; + protected PrintWriter os; // table for gradients Hashtable gradients = new Hashtable(); -- tg: (4fbaca4..) patch/geogebra (depends on: master)