summaryrefslogtreecommitdiffstats
path: root/dx/src
diff options
context:
space:
mode:
authorAlexey Tarasov <tarasov@dodologics.com>2009-09-01 02:34:47 +1100
committerAlexey Tarasov <tarasov@dodologics.com>2009-09-01 02:34:47 +1100
commit6d84d361b3c83f1baf9ab23e3f81098702698e37 (patch)
tree59a566465e211348109325ccdc2cb2a432afff6c /dx/src
parent30d4c4a0e63f5bd6f1887bb987d7836ea091144e (diff)
downloadandroid_dalvik-6d84d361b3c83f1baf9ab23e3f81098702698e37.tar.gz
android_dalvik-6d84d361b3c83f1baf9ab23e3f81098702698e37.tar.bz2
android_dalvik-6d84d361b3c83f1baf9ab23e3f81098702698e37.zip
Typo fix in javadoc
spec -> otherSpec
Diffstat (limited to 'dx/src')
-rw-r--r--dx/src/com/android/dx/dex/code/LocalList.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dx/src/com/android/dx/dex/code/LocalList.java b/dx/src/com/android/dx/dex/code/LocalList.java
index 4614fc41e..fb6599792 100644
--- a/dx/src/com/android/dx/dex/code/LocalList.java
+++ b/dx/src/com/android/dx/dex/code/LocalList.java
@@ -278,9 +278,9 @@ public final class LocalList extends FixedSizeList {
/**
* Returns whether or not this instance matches the given spec.
*
- * @param spec non-null; the spec in question
+ * @param otherSpec non-null; the spec in question
* @return <code>true</code> iff this instance matches
- * <code>spec</code>
+ * <code>otherSpec</code>
*/
public boolean matches(RegisterSpec otherSpec) {
return spec.equalsUsingSimpleType(otherSpec);