You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2016/06/12 16:54:08 UTC

[27/50] incubator-freemarker git commit: (Renamed some param variables)

(Renamed some param variables)


Project: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/commit/e4036611
Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/e4036611
Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/e4036611

Branch: refs/heads/2.3
Commit: e4036611cae7d6ea6dc0bd47bf6b0ff0fcf7c47b
Parents: 3055ed0
Author: ddekany <dd...@apache.org>
Authored: Sat Jun 4 21:36:43 2016 +0200
Committer: ddekany <dd...@apache.org>
Committed: Sat Jun 4 21:36:43 2016 +0200

----------------------------------------------------------------------
 src/main/java/freemarker/template/Configuration.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/e4036611/src/main/java/freemarker/template/Configuration.java
----------------------------------------------------------------------
diff --git a/src/main/java/freemarker/template/Configuration.java b/src/main/java/freemarker/template/Configuration.java
index 99045fb..35a7d3a 100644
--- a/src/main/java/freemarker/template/Configuration.java
+++ b/src/main/java/freemarker/template/Configuration.java
@@ -533,7 +533,7 @@ public class Configuration extends Configurable implements Cloneable, ParserConf
     private LinkedHashMap<String, String> autoImports = new LinkedHashMap<String, String>(0);
     private ArrayList<String> autoIncludes = new ArrayList<String>(0);
     private boolean lazyImpots;
-    private Boolean lazyAutoImport;
+    private Boolean lazyAutoImports;
 
     /**
      * @deprecated Use {@link #Configuration(Version)} instead. Note that the version can be still modified later with
@@ -3216,8 +3216,8 @@ public class Configuration extends Configurable implements Cloneable, ParserConf
      * 
      * @since 2.3.25
      */
-    public void setLazyImports(boolean importsLazy) {
-        this.lazyImpots = importsLazy;
+    public void setLazyImports(boolean lazyImports) {
+        this.lazyImpots = lazyImports;
     }
 
     /**
@@ -3226,7 +3226,7 @@ public class Configuration extends Configurable implements Cloneable, ParserConf
      * @since 2.3.25
      */
     public Boolean getLazyAutoImports() {
-        return lazyAutoImport;
+        return lazyAutoImports;
     }
 
     /**
@@ -3238,7 +3238,7 @@ public class Configuration extends Configurable implements Cloneable, ParserConf
      * @since 2.3.25
      */
     public void setLazyAutoImports(Boolean autoImportsLazy) {
-        this.lazyAutoImport = autoImportsLazy;
+        this.lazyAutoImports = autoImportsLazy;
     }
 
     /**