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 6890944a Fix typos in comments
6890944a is described below

commit 6890944a0ba924f0e150b52f624d4e31182fab57
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Aug 21 09:12:23 2024 -0400

    Fix typos in comments
---
 .../org/apache/commons/beanutils2/converters/MemoryTestCase.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/beanutils2/converters/MemoryTestCase.java 
b/src/test/java/org/apache/commons/beanutils2/converters/MemoryTestCase.java
index 0899924c..32e64afa 100644
--- a/src/test/java/org/apache/commons/beanutils2/converters/MemoryTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/converters/MemoryTestCase.java
@@ -74,7 +74,7 @@ public class MemoryTestCase {
         }
 
         // and let's do one more just to clean up any garbage we might have
-        // created on the last pass..
+        // created on the last pass.
         System.gc();
     }
 
@@ -156,7 +156,7 @@ public class MemoryTestCase {
         } finally {
             // Restore context classloader that was present before this
             // test started. It is expected to be the same as the system
-            // classloader, but we handle all cases here..
+            // classloader, but we handle all cases here.
             
Thread.currentThread().setContextClassLoader(origContextClassLoader);
 
             // and restore all the standard converters
@@ -202,7 +202,7 @@ public class MemoryTestCase {
 
                 // When we first do a ConvertUtils operation inside a custom
                 // classloader, we get a completely fresh copy of the
-                // ConvertUtilsBean, with all-new Converter objects in it..
+                // ConvertUtilsBean, with all-new Converter objects in it.
                 assertFalse(ConvertUtils.lookup(Float.TYPE) == 
origFloatConverter);
 
                 // Now we register a custom converter (but of a standard 
class).
@@ -266,7 +266,7 @@ public class MemoryTestCase {
         } finally {
             // Restore context classloader that was present before this
             // test started. It is expected to be the same as the system
-            // classloader, but we handle all cases here..
+            // classloader, but we handle all cases here.
             
Thread.currentThread().setContextClassLoader(origContextClassLoader);
 
             // and restore all the standard converters

Reply via email to