]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/template/TemplateBlock.java
UPD: Move some template classes to there reightful place.
[gigi.git] / src / org / cacert / gigi / output / template / TemplateBlock.java
index 2eb87e7b2e35f7fa4684407ea579449f2adee1cd..15ce4e5b967c23ad463cb60017e44d57979fa8b9 100644 (file)
@@ -4,13 +4,12 @@ import java.io.PrintWriter;
 import java.util.Map;
 
 import org.cacert.gigi.localisation.Language;
-import org.cacert.gigi.output.Outputable;
 
 class TemplateBlock implements Outputable {
 
-    String[] contents;
+    private String[] contents;
 
-    Outputable[] vars;
+    private Outputable[] vars;
 
     public TemplateBlock(String[] contents, Outputable[] vars) {
         this.contents = contents;