Author: bayard
Date: Sun Jan 30 07:30:58 2011
New Revision: 1065205
URL: http://svn.apache.org/viewvc?rev=1065205&view=rev
Log:
Updating javadoc
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/AnnotationUtils.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/AnnotationUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/AnnotationUtils.java?rev=1065205&r1=1065204&r2=1065205&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/AnnotationUtils.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/AnnotationUtils.java
Sun Jan 30 07:30:58 2011
@@ -96,6 +96,7 @@ public class AnnotationUtils {
* per spec.
* @param a1 the first Annotation to compare
* @param a2 the second Annotation to compare
+ * @return Whether the two annotations are equal
*/
public static boolean equals(Annotation a1, Annotation a2) {
if (a1 == a2) {
@@ -136,9 +137,9 @@ public class AnnotationUtils {
*
* @param a the Annotation for a hashcode calculation is desired
* @return the calculated hashcode
- * @throws InvocationTargetException
- * @throws IllegalAccessException
* @throws IllegalArgumentException
+ * @throws IllegalAccessException
+ * @throws InvocationTargetException
*/
public static int hashCode(Annotation a) throws IllegalArgumentException,
IllegalAccessException, InvocationTargetException {