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-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 1948d98  Remove dead comments.
1948d98 is described below

commit 1948d987db404513bc0d9e3dbc68d880b4aa4989
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Jan 1 13:44:31 2021 -0500

    Remove dead comments.
---
 src/main/java/org/apache/commons/lang3/LocaleUtils.java | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/LocaleUtils.java 
b/src/main/java/org/apache/commons/lang3/LocaleUtils.java
index b73856e..f613de3 100644
--- a/src/main/java/org/apache/commons/lang3/LocaleUtils.java
+++ b/src/main/java/org/apache/commons/lang3/LocaleUtils.java
@@ -37,7 +37,6 @@ import java.util.concurrent.ConcurrentMap;
  */
 public class LocaleUtils {
 
-    //-----------------------------------------------------------------------
     // class to avoid synchronization (Init on demand)
     static class SyncAvoid {
         /** Unmodifiable list of available locales. */
@@ -60,7 +59,6 @@ public class LocaleUtils {
     private static final ConcurrentMap<String, List<Locale>> 
cCountriesByLanguage =
         new ConcurrentHashMap<>();
 
-    //-----------------------------------------------------------------------
     /**
      * <p>Obtains an unmodifiable list of installed locales.</p>
      *
@@ -74,7 +72,6 @@ public class LocaleUtils {
         return SyncAvoid.AVAILABLE_LOCALE_LIST;
     }
 
-    //-----------------------------------------------------------------------
     /**
      * <p>Obtains an unmodifiable set of installed locales.</p>
      *
@@ -88,7 +85,6 @@ public class LocaleUtils {
         return SyncAvoid.AVAILABLE_LOCALE_SET;
     }
 
-    //-----------------------------------------------------------------------
     /**
      * <p>Obtains the list of countries supported for a given language.</p>
      *
@@ -120,7 +116,6 @@ public class LocaleUtils {
         return countries;
     }
 
-    //-----------------------------------------------------------------------
     /**
      * <p>Checks if the locale specified is in the list of available 
locales.</p>
      *
@@ -161,7 +156,6 @@ public class LocaleUtils {
         return StringUtils.isNumeric(str) && str.length() == 3;
     }
 
-    //-----------------------------------------------------------------------
     /**
      * <p>Obtains the list of languages supported for a given country.</p>
      *
@@ -192,7 +186,6 @@ public class LocaleUtils {
         return langs;
     }
 
-    //-----------------------------------------------------------------------
     /**
      * <p>Obtains the list of locales to search through when performing
      * a locale search.</p>
@@ -209,7 +202,6 @@ public class LocaleUtils {
         return localeLookupList(locale, locale);
     }
 
-    //-----------------------------------------------------------------------
     /**
      * <p>Obtains the list of locales to search through when performing
      * a locale search.</p>

Reply via email to