aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/commons/lang3/ClassUtils.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
committerSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
commitf43c74c63c80943fcad75687121f4bd4b649c48f (patch)
tree802f93ff6914b54cdaeba0df35fc8bb7d5dd4498 /src/org/apache/commons/lang3/ClassUtils.java
parentfeda5dd2abefe921b11e492996e9701ffdac0d4b (diff)
downloadcgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.zip
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.gz
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.bz2
Remove trailing whitespace in Javadoc strings
Diffstat (limited to 'src/org/apache/commons/lang3/ClassUtils.java')
-rw-r--r--src/org/apache/commons/lang3/ClassUtils.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/org/apache/commons/lang3/ClassUtils.java b/src/org/apache/commons/lang3/ClassUtils.java
index 48910f8..5a5abcd 100644
--- a/src/org/apache/commons/lang3/ClassUtils.java
+++ b/src/org/apache/commons/lang3/ClassUtils.java
@@ -156,9 +156,9 @@ public class ClassUtils {
/**
* <p>Gets the class name minus the package name from a {@code Class}.</p>
- *
- * <p>Consider using the Java 5 API {@link Class#getSimpleName()} instead.
- * The one known difference is that this code will return {@code "Map.Entry"} while
+ *
+ * <p>Consider using the Java 5 API {@link Class#getSimpleName()} instead.
+ * The one known difference is that this code will return {@code "Map.Entry"} while
* the {@code java.lang.Class} variant will simply return {@code "Entry"}. </p>
*
* @param cls the class to get the short name for.
@@ -176,8 +176,8 @@ public class ClassUtils {
*
* <p>The string passed in is assumed to be a class name - it is not checked.</p>
- * <p>Note that this method differs from Class.getSimpleName() in that this will
- * return {@code "Map.Entry"} whilst the {@code java.lang.Class} variant will simply
+ * <p>Note that this method differs from Class.getSimpleName() in that this will
+ * return {@code "Map.Entry"} whilst the {@code java.lang.Class} variant will simply
* return {@code "Entry"}. </p>
*
* @param className the className to get the short name for