From 5cf4e60d8996c9fb4370546e489f10a0d648d29c Mon Sep 17 00:00:00 2001 From: ui4j Date: Wed, 6 May 2015 23:42:10 +0300 Subject: [PATCH] Removed unused variables --- src/main/java/com/samskivert/mustache/Mustache.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/com/samskivert/mustache/Mustache.java b/src/main/java/com/samskivert/mustache/Mustache.java index 83b551f..7804576 100644 --- a/src/main/java/com/samskivert/mustache/Mustache.java +++ b/src/main/java/com/samskivert/mustache/Mustache.java @@ -329,7 +329,6 @@ public class Mustache // if we're at the top-level there are virtual "blank lines" before & after segs boolean prevBlank = ((pseg == null && top) || (prev != null && prev.trailsBlank())); boolean nextBlank = ((nseg == null && top) || (next != null && next.leadsBlank())); - boolean trimPrev = false, trimNext = false; // potentially trim around the open and close tags of a block segment if (seg instanceof BlockSegment) { BlockSegment block = (BlockSegment)seg;