From b33bbda7d9f5a2a2103eb2fb52aab7fcbbdaac58 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Sat, 6 Dec 2014 12:51:05 -0800 Subject: [PATCH] Label that bunch of mysterious ctor params. --- src/main/java/com/samskivert/mustache/Mustache.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/samskivert/mustache/Mustache.java b/src/main/java/com/samskivert/mustache/Mustache.java index 2c69f41..f66e427 100644 --- a/src/main/java/com/samskivert/mustache/Mustache.java +++ b/src/main/java/com/samskivert/mustache/Mustache.java @@ -280,8 +280,9 @@ public class Mustache * Returns a compiler that escapes HTML by default and does not use standards mode. */ public static Compiler compiler () { - return new Compiler(false, null, true, false, false, DEFAULT_FORMATTER, Escapers.HTML, - FAILING_LOADER, new DefaultCollector(), new Delims()); + return new Compiler(/*standardsMode=*/false, /*nullValue=*/null, /*missingIsNull=*/true, + /*emptyStringIsFalse=*/false, /*zeroIsFalse=*/false, DEFAULT_FORMATTER, + Escapers.HTML, FAILING_LOADER, new DefaultCollector(), new Delims()); } /**