X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Foutput%2Ftemplate%2FIfStatement.java;h=1b49f3b28f0ae1dad5dfe8526cbd5e347cd9b9e6;hb=98dc0c64072a6f7f7916471f378cabf2d6c4fb87;hp=f2248bcc72fd3a3987b87cc22f7192d5c2883bdc;hpb=7a9b55470434239a3dd260005932e9e6096a9921;p=gigi.git diff --git a/src/org/cacert/gigi/output/template/IfStatement.java b/src/org/cacert/gigi/output/template/IfStatement.java index f2248bcc..1b49f3b2 100644 --- a/src/org/cacert/gigi/output/template/IfStatement.java +++ b/src/org/cacert/gigi/output/template/IfStatement.java @@ -22,7 +22,7 @@ public final class IfStatement implements Translatable { * Creates a new {@link IfStatement} with an empty else-part. * * @param variable - * the variable to check + * the variable to check. * @param body * the body to emit conditionally. */ @@ -36,11 +36,11 @@ public final class IfStatement implements Translatable { * Creates a new {@link IfStatement} with an else-block. * * @param variable - * the variable to check + * the variable to check. * @param iftrue * the block to emit if the check succeeds. * @param iffalse - * the block to emit if the check fails + * the block to emit if the check fails. */ public IfStatement(String variable, TemplateBlock iftrue, TemplateBlock iffalse) { this.variable = variable;