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 961bc563 Fix typos
961bc563 is described below
commit 961bc5639c72c5b295104b7c865556bda14a0c54
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 15 07:51:57 2023 -0500
Fix typos
---
src/main/java/org/apache/commons/beanutils2/BeanMap.java | 2 +-
.../java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java | 2 +-
src/test/java/org/apache/commons/beanutils2/BeanUtilsTestCase.java | 2 +-
src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java | 2 +-
.../java/org/apache/commons/beanutils2/DynaPropertyUtilsTestCase.java | 2 +-
src/test/java/org/apache/commons/beanutils2/PropertyUtilsTestCase.java | 2 +-
.../java/org/apache/commons/beanutils2/converters/ClassReloader.java | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanMap.java
b/src/main/java/org/apache/commons/beanutils2/BeanMap.java
index 70844df6..2fcfe9af 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanMap.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanMap.java
@@ -656,7 +656,7 @@ public class BeanMap extends AbstractMap<String, Object>
implements Cloneable {
}
/**
- * Converts the given value to the given type. First, reflection is is
used to find a public constructor declared by
+ * Converts the given value to the given type. First, reflection is used
to find a public constructor declared by
* the given class that takes one argument, which must be the precise type
of the given value. If such a constructor
* is found, a new object is created by passing the given value to that
constructor, and the newly constructed
* object is returned.
diff --git
a/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java
b/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java
index 45b41526..084c679b 100644
--- a/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java
+++ b/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java
@@ -180,7 +180,7 @@ public class MappedPropertyDescriptor extends
PropertyDescriptor {
*
* @param propertyName The programmatic name of the property.
* @param mappedGetter The method used for reading one of
- * the property values. May be be null if the property
+ * the property values. May be null if the property
* is write-only.
* @param mappedSetter The method used for writing one the
* property values. May be null if the property is read-only.
diff --git a/src/test/java/org/apache/commons/beanutils2/BeanUtilsTestCase.java
b/src/test/java/org/apache/commons/beanutils2/BeanUtilsTestCase.java
index 23762f6d..45bdfc0e 100644
--- a/src/test/java/org/apache/commons/beanutils2/BeanUtilsTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/BeanUtilsTestCase.java
@@ -243,7 +243,7 @@ public class BeanUtilsTestCase extends TestCase {
}
/**
- * Test copyProperties() when the origin is a a {@code Map}.
+ * Test copyProperties() when the origin is a {@code Map}.
*/
public void testCopyPropertiesMap() {
diff --git
a/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java
b/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java
index e4213313..5bf1d101 100644
--- a/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java
@@ -324,7 +324,7 @@ public class DynaBeanUtilsTestCase extends TestCase {
}
/**
- * Test copyProperties() when the origin is a a {@code Map}.
+ * Test copyProperties() when the origin is a {@code Map}.
*/
public void testCopyPropertiesMap() {
diff --git
a/src/test/java/org/apache/commons/beanutils2/DynaPropertyUtilsTestCase.java
b/src/test/java/org/apache/commons/beanutils2/DynaPropertyUtilsTestCase.java
index fe456cfc..1d73d4a7 100644
--- a/src/test/java/org/apache/commons/beanutils2/DynaPropertyUtilsTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/DynaPropertyUtilsTestCase.java
@@ -167,7 +167,7 @@ public class DynaPropertyUtilsTestCase extends TestCase {
/**
- * Test copyProperties() when the origin is a a {@code Map}.
+ * Test copyProperties() when the origin is a {@code Map}.
*/
public void testCopyPropertiesMap() {
diff --git
a/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTestCase.java
b/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTestCase.java
index bb947014..9cbe08fc 100644
--- a/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTestCase.java
@@ -230,7 +230,7 @@ public class PropertyUtilsTestCase extends TestCase {
/**
- * Test copyProperties() when the origin is a a {@code Map}.
+ * Test copyProperties() when the origin is a {@code Map}.
*/
public void testCopyPropertiesMap() {
diff --git
a/src/test/java/org/apache/commons/beanutils2/converters/ClassReloader.java
b/src/test/java/org/apache/commons/beanutils2/converters/ClassReloader.java
index c16d3617..0b50c2d8 100644
--- a/src/test/java/org/apache/commons/beanutils2/converters/ClassReloader.java
+++ b/src/test/java/org/apache/commons/beanutils2/converters/ClassReloader.java
@@ -31,7 +31,7 @@ import java.io.InputStream;
*
* <p>Normally this is done by having certain jars or class-file-directories
* in the classpath of some classloaders but not others. This is quite
- * difficult difficult to integrate with the build process for the unit
+ * difficult to integrate with the build process for the unit
* tests though; compiling certain classes and having the output go into
* places that is not in the default classpath for the unit tests would be
* a major pain.</p>