aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/CharUtils.java
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2021-07-10 09:59:59 -0400
committerGary Gregory <garydgregory@gmail.com>2021-07-10 09:59:59 -0400
commitb82f96ecbb3d53b7ff8b2122f515162149c811e1 (patch)
tree333a3e32e199e6019b5e4c34bdcfe73967491a00 /src/main/java/org/apache/commons/lang3/CharUtils.java
parent929c5f6e682598ca14cadd07a791c0ce578632ee (diff)
downloadapache-commons-lang-b82f96ecbb3d53b7ff8b2122f515162149c811e1.tar.gz
Remove dead in-line comments.
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/CharUtils.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/CharUtils.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/org/apache/commons/lang3/CharUtils.java b/src/main/java/org/apache/commons/lang3/CharUtils.java
index b98044391..7ff7d249d 100644
--- a/src/main/java/org/apache/commons/lang3/CharUtils.java
+++ b/src/main/java/org/apache/commons/lang3/CharUtils.java
@@ -73,7 +73,6 @@ public class CharUtils {
public CharUtils() {
}
- //-----------------------------------------------------------------------
/**
* <p>Converts the character to a Character.</p>
*
@@ -118,7 +117,6 @@ public class CharUtils {
return Character.valueOf(str.charAt(0));
}
- //-----------------------------------------------------------------------
/**
* <p>Converts the Character to a char throwing an exception for {@code null}.</p>
*
@@ -157,7 +155,6 @@ public class CharUtils {
return ch.charValue();
}
- //-----------------------------------------------------------------------
/**
* <p>Converts the String to a char using the first character, throwing
* an exception on empty Strings.</p>
@@ -201,7 +198,6 @@ public class CharUtils {
return str.charAt(0);
}
- //-----------------------------------------------------------------------
/**
* <p>Converts the character to the Integer it represents, throwing an
* exception if the character is not numeric.</p>
@@ -291,7 +287,6 @@ public class CharUtils {
return toIntValue(ch.charValue(), defaultValue);
}
- //-----------------------------------------------------------------------
/**
* <p>Converts the character to a String that contains the one character.</p>
*