Author: simonetripodi
Date: Tue Apr 5 21:28:24 2011
New Revision: 1089237
URL: http://svn.apache.org/viewvc?rev=1089237&view=rev
Log:
fixed checkstyle violations
Modified:
commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/tools/ClassUtils.java
Modified:
commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/tools/ClassUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/tools/ClassUtils.java?rev=1089237&r1=1089236&r2=1089237&view=diff
==============================================================================
---
commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/tools/ClassUtils.java
(original)
+++
commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/tools/ClassUtils.java
Tue Apr 5 21:28:24 2011
@@ -101,8 +101,14 @@ public class ClassUtils {
log.debug(methodName + "() is not static");
}
if (method.getReturnType() != returnType) {
- log.debug("Method returns: " +
method.getReturnType().getName() + "@@" +
method.getReturnType().getClassLoader());
- log.debug("Should return: " + returnType.getName() + "@@"
+ returnType.getClassLoader());
+ log.debug("Method returns: "
+ + method.getReturnType().getName()
+ + "@@"
+ + method.getReturnType().getClassLoader());
+ log.debug("Should return: "
+ + returnType.getName()
+ + "@@"
+ + returnType.getClassLoader());
}
}
problem = true;