X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Foutput%2Ftemplate%2FIfStatement.java;h=1b49f3b28f0ae1dad5dfe8526cbd5e347cd9b9e6;hb=ff8b2a0142c24f22a0fac2518eb0a6cd6b95ef12;hp=f2248bcc72fd3a3987b87cc22f7192d5c2883bdc;hpb=06fff0058cc341b53a5fd57a0afc8b2c1d906d28;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;