aboutsummaryrefslogtreecommitdiffstats
path: root/testing-util
diff options
context:
space:
mode:
authoravasseur <avasseur>2005-06-13 09:21:14 +0000
committeravasseur <avasseur>2005-06-13 09:21:14 +0000
commit191c26bb4fc0b90a183e4448ab57d9b62fed429c (patch)
tree15bdfaf548137b1c769abc9e894326dd1d2f66da /testing-util
parent6b4238eb0f0871eae60d71fe596c96c2ae5dce76 (diff)
downloadaspectj-191c26bb4fc0b90a183e4448ab57d9b62fed429c.tar.gz
aspectj-191c26bb4fc0b90a183e4448ab57d9b62fed429c.zip
fixed bug with LTW Xreweavable, fix this reflective issue in RunAllBeforeCommit (was misnamed..)
Diffstat (limited to 'testing-util')
-rw-r--r--testing-util/src/org/aspectj/testing/util/TestUtil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing-util/src/org/aspectj/testing/util/TestUtil.java b/testing-util/src/org/aspectj/testing/util/TestUtil.java
index ecd738478..16d0a396a 100644
--- a/testing-util/src/org/aspectj/testing/util/TestUtil.java
+++ b/testing-util/src/org/aspectj/testing/util/TestUtil.java
@@ -204,7 +204,7 @@ public final class TestUtil {
}
/**
- * @param s the String to parse for [on|off|true|false]
+ * @param input the String to parse for [on|off|true|false]
* @throws IllegalArgumentException if input is bad
**/
public static boolean parseBoolean(String input) {
@@ -212,7 +212,7 @@ public final class TestUtil {
}
/**
- * @param s the String to parse for [on|off|true|false]
+ * @param input the String to parse for [on|off|true|false]
* @param iaxOnError if true and input is bad, throw
* IllegalArgumentException
* @return true if input is true, false otherwise