From 415ce96a40dc71ed2643d86879a2662c3e560120 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Wed, 13 Mar 2013 12:50:23 +0000 Subject: [PATCH] trivial: remove trailing white spaces git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1455915 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/lang3/ClassUtils.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/ClassUtils.java b/src/main/java/org/apache/commons/lang3/ClassUtils.java index 13c5bc577..5beca0a54 100644 --- a/src/main/java/org/apache/commons/lang3/ClassUtils.java +++ b/src/main/java/org/apache/commons/lang3/ClassUtils.java @@ -156,9 +156,9 @@ public class ClassUtils { /** *

Gets the class name minus the package name from a {@code Class}.

- * - *

Consider using the Java 5 API {@link Class#getSimpleName()} instead. - * The one known difference is that this code will return {@code "Map.Entry"} while + * + *

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"}.

* * @param cls the class to get the short name for. @@ -176,14 +176,14 @@ public class ClassUtils { * *

The string passed in is assumed to be a class name - it is not checked.

- *

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 + *

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"}.

* * @param className the className to get the short name for * @return the class name of the class without the package name or an empty string */ - public static String getShortClassName(String className) { + public static String getShortClassName(String className) { if (StringUtils.isEmpty(className)) { return StringUtils.EMPTY; } @@ -523,7 +523,7 @@ public class ClassUtils { /** * Returns whether the given {@code type} is a primitive or primitive wrapper ({@link Boolean}, {@link Byte}, {@link Character}, * {@link Short}, {@link Integer}, {@link Long}, {@link Double}, {@link Float}). - * + * * @param type * The class to query or null. * @return true if the given {@code type} is a primitive or primitive wrapper ({@link Boolean}, {@link Byte}, {@link Character}, @@ -540,7 +540,7 @@ public class ClassUtils { /** * Returns whether the given {@code type} is a primitive wrapper ({@link Boolean}, {@link Byte}, {@link Character}, {@link Short}, * {@link Integer}, {@link Long}, {@link Double}, {@link Float}). - * + * * @param type * The class to query or null. * @return true if the given {@code type} is a primitive wrapper ({@link Boolean}, {@link Byte}, {@link Character}, {@link Short},