]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/template/SprintfCommand.java
Making template api public (for building up error messages)
[gigi.git] / src / org / cacert / gigi / output / template / SprintfCommand.java
index 24608d2ec030ea671b5d7b69281e2d6107b08470..42ed9570d514fd3498c7ddd1504b50a3c4dce6e9 100644 (file)
@@ -7,11 +7,11 @@ import java.util.Map;
 import org.cacert.gigi.Language;
 import org.cacert.gigi.output.Outputable;
 
-final class SprintfCommand implements Outputable {
+public final class SprintfCommand implements Outputable {
        private final String text;
        private final LinkedList<String> store;
 
-       SprintfCommand(String text, LinkedList<String> store) {
+       public SprintfCommand(String text, LinkedList<String> store) {
                this.text = text;
                this.store = store;
        }