This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
     new 6266264  Normalize to US English spelling.
6266264 is described below

commit 62662640d5f015149110c24b09477652c650002b
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Feb 8 14:22:29 2021 -0500

    Normalize to US English spelling.
---
 src/main/java/org/apache/commons/beanutils2/BeanMap.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/beanutils2/BeanMap.java 
b/src/main/java/org/apache/commons/beanutils2/BeanMap.java
index be3c0bf..a1550b1 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanMap.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanMap.java
@@ -93,7 +93,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
      */
     public BeanMap(final Object bean) {
         this.bean = bean;
-        initialise();
+        initialize();
     }
 
     // Map interface
@@ -528,10 +528,10 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
         readMethods.clear();
         writeMethods.clear();
         types.clear();
-        initialise();
+        initialize();
     }
 
-    private void initialise() {
+    private void initialize() {
         if (getBean() == null) {
             return;
         }

Reply via email to