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