Minor javadoc fixes in MethodProtoReference

This commit is contained in:
Ben Gruver 2018-01-30 16:32:21 -08:00
parent b575410a8a
commit 6c054e1b44

View File

@ -69,9 +69,9 @@ public interface MethodProtoReference extends Reference, Comparable<MethodProtoR
@Override int hashCode(); @Override int hashCode();
/** /**
* Compares this MethodTypeReference to another MethodProtoReference for equality. * Compares this MethodProtoReference to another MethodProtoReference for equality.
* *
* This MethodTypeReference is equal to another MethodProtoReference if all of it's "fields" are equal. That is, if * This MethodProtoReference is equal to another MethodProtoReference if all of it's "fields" are equal. That is, if
* the return values of getReturnType() and getParameterTypes() are all equal. * the return values of getReturnType() and getParameterTypes() are all equal.
* *
* Equality for getParameters() should be tested by comparing the string representation of each element. I.e. * Equality for getParameters() should be tested by comparing the string representation of each element. I.e.
@ -83,7 +83,7 @@ public interface MethodProtoReference extends Reference, Comparable<MethodProtoR
@Override boolean equals(@Nullable Object o); @Override boolean equals(@Nullable Object o);
/** /**
* Compare this MethodTypeReference to another MethodProtoReference. * Compare this MethodProtoReference to another MethodProtoReference.
* *
* The comparison is based on the comparison of the return values of getReturnType() and getParameters(), * The comparison is based on the comparison of the return values of getReturnType() and getParameters(),
* in that order. getParameters() should be compared using the semantics of * in that order. getParameters() should be compared using the semantics of