Repository: freemarker Updated Branches: refs/heads/2.3-gae 43d065841 -> a03a1473b
Type: changed newDesciptionBuilder to newDescriptionBuilder Project: http://git-wip-us.apache.org/repos/asf/freemarker/repo Commit: http://git-wip-us.apache.org/repos/asf/freemarker/commit/b2ff8152 Tree: http://git-wip-us.apache.org/repos/asf/freemarker/tree/b2ff8152 Diff: http://git-wip-us.apache.org/repos/asf/freemarker/diff/b2ff8152 Branch: refs/heads/2.3-gae Commit: b2ff8152202accd51d0760b20b5773deb6d44784 Parents: 43d0658 Author: Chaquotay <[email protected]> Authored: Sun Jun 10 17:39:31 2018 +0200 Committer: Chaquotay <[email protected]> Committed: Sun Jun 10 17:39:31 2018 +0200 ---------------------------------------------------------------------- .../java/freemarker/core/UnexpectedTypeException.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/freemarker/blob/b2ff8152/src/main/java/freemarker/core/UnexpectedTypeException.java ---------------------------------------------------------------------- diff --git a/src/main/java/freemarker/core/UnexpectedTypeException.java b/src/main/java/freemarker/core/UnexpectedTypeException.java index 61b0fe4..9cb56f8 100644 --- a/src/main/java/freemarker/core/UnexpectedTypeException.java +++ b/src/main/java/freemarker/core/UnexpectedTypeException.java @@ -45,14 +45,14 @@ public class UnexpectedTypeException extends TemplateException { UnexpectedTypeException( Expression blamed, TemplateModel model, String expectedTypesDesc, Class[] expectedTypes, Environment env) throws InvalidReferenceException { - super(null, env, blamed, newDesciptionBuilder(blamed, null, model, expectedTypesDesc, expectedTypes, env)); + super(null, env, blamed, newDescriptionBuilder(blamed, null, model, expectedTypesDesc, expectedTypes, env)); } UnexpectedTypeException( Expression blamed, TemplateModel model, String expectedTypesDesc, Class[] expectedTypes, String tip, Environment env) throws InvalidReferenceException { - super(null, env, blamed, newDesciptionBuilder(blamed, null, model, expectedTypesDesc, expectedTypes, env) + super(null, env, blamed, newDescriptionBuilder(blamed, null, model, expectedTypesDesc, expectedTypes, env) .tip(tip)); } @@ -60,7 +60,7 @@ public class UnexpectedTypeException extends TemplateException { Expression blamed, TemplateModel model, String expectedTypesDesc, Class[] expectedTypes, Object[] tips, Environment env) throws InvalidReferenceException { - super(null, env, blamed, newDesciptionBuilder(blamed, null, model, expectedTypesDesc, expectedTypes, env) + super(null, env, blamed, newDescriptionBuilder(blamed, null, model, expectedTypesDesc, expectedTypes, env) .tips(tips)); } @@ -69,7 +69,7 @@ public class UnexpectedTypeException extends TemplateException { Object[] tips, Environment env) throws InvalidReferenceException { - super(null, env, null, newDesciptionBuilder( + super(null, env, null, newDescriptionBuilder( null, blamedAssignmentTargetVarName, model, expectedTypesDesc, expectedTypes, env).tips(tips)); } @@ -78,7 +78,7 @@ public class UnexpectedTypeException extends TemplateException { * Used for assignments that use {@code +=} and such, in which case the {@code blamed} expression * parameter will be null {@code null} and this parameter will be non-{null}. */ - private static _ErrorDescriptionBuilder newDesciptionBuilder( + private static _ErrorDescriptionBuilder newDescriptionBuilder( Expression blamed, String blamedAssignmentTargetVarName, TemplateModel model, String expectedTypesDesc, Class[] expectedTypes, Environment env) throws InvalidReferenceException {
