summaryrefslogtreecommitdiff
path: root/tools/external/asm/org/objectweb/asm/commons/Method.java
diff options
context:
space:
mode:
Diffstat (limited to 'tools/external/asm/org/objectweb/asm/commons/Method.java')
-rw-r--r--tools/external/asm/org/objectweb/asm/commons/Method.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/tools/external/asm/org/objectweb/asm/commons/Method.java b/tools/external/asm/org/objectweb/asm/commons/Method.java
index 741e7b5be..c5ce31407 100644
--- a/tools/external/asm/org/objectweb/asm/commons/Method.java
+++ b/tools/external/asm/org/objectweb/asm/commons/Method.java
@@ -36,7 +36,7 @@ import org.objectweb.asm.Type;
/**
* A named method descriptor.
- *
+ *
* @author Juozas Baliuka
* @author Chris Nokleberg
* @author Eric Bruneton
@@ -73,7 +73,7 @@ public class Method {
/**
* Creates a new {@link Method}.
- *
+ *
* @param name the method's name.
* @param desc the method's descriptor.
*/
@@ -84,7 +84,7 @@ public class Method {
/**
* Creates a new {@link Method}.
- *
+ *
* @param name the method's name.
* @param returnType the method's return type.
* @param argumentTypes the method's argument types.
@@ -100,7 +100,7 @@ public class Method {
/**
* Returns a {@link Method} corresponding to the given Java method
* declaration.
- *
+ *
* @param method a Java method declaration, without argument names, of the
* form "returnType name (argumentType1, ... argumentTypeN)", where
* the types are in plain Java (e.g. "int", "float",
@@ -168,7 +168,7 @@ public class Method {
/**
* Returns the name of the method described by this object.
- *
+ *
* @return the name of the method described by this object.
*/
public String getName() {
@@ -177,7 +177,7 @@ public class Method {
/**
* Returns the descriptor of the method described by this object.
- *
+ *
* @return the descriptor of the method described by this object.
*/
public String getDescriptor() {
@@ -186,7 +186,7 @@ public class Method {
/**
* Returns the return type of the method described by this object.
- *
+ *
* @return the return type of the method described by this object.
*/
public Type getReturnType() {
@@ -195,7 +195,7 @@ public class Method {
/**
* Returns the argument types of the method described by this object.
- *
+ *
* @return the argument types of the method described by this object.
*/
public Type[] getArgumentTypes() {
@@ -217,4 +217,4 @@ public class Method {
public int hashCode() {
return name.hashCode() ^ desc.hashCode();
}
-} \ No newline at end of file
+}