Skip to content

Commit

Permalink
api change
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Pullara committed Apr 12, 2021
1 parent f0f4f17 commit 37d5465
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ public void value(TemplateContext tc, String variable, boolean encoded) {
}

@Override
public void partial(TemplateContext tc, String variable) {
public void partial(TemplateContext tc, String variable, String indent) {
// Implements {{>.}} which dynamically gets the partial name from the partial field
if (variable.equals(".")) {
dynamicPartial(tc, variable);
} else {
super.partial(tc, variable);
super.partial(tc, variable, indent);
}
}

Expand Down

0 comments on commit 37d5465

Please sign in to comment.