diff options
author | jhugunin <jhugunin> | 2003-01-07 20:10:23 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-01-07 20:10:23 +0000 |
commit | fc1b857d288b5d4055479c19111ee9f5924b0c88 (patch) | |
tree | fd0ebef355e1a1a22343a28d5a4989526fbd769e /testing | |
parent | b1979531b07dc70d1eb27eab92e970812701f119 (diff) | |
download | aspectj-fc1b857d288b5d4055479c19111ee9f5924b0c88.tar.gz aspectj-fc1b857d288b5d4055479c19111ee9f5924b0c88.zip |
allowing large bug ids to make room for eclipse.org bugs
Diffstat (limited to 'testing')
-rw-r--r-- | testing/src/org/aspectj/testing/harness/bridge/AjcTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/src/org/aspectj/testing/harness/bridge/AjcTest.java b/testing/src/org/aspectj/testing/harness/bridge/AjcTest.java index cbf19a2fb..1b1735b55 100644 --- a/testing/src/org/aspectj/testing/harness/bridge/AjcTest.java +++ b/testing/src/org/aspectj/testing/harness/bridge/AjcTest.java @@ -125,7 +125,7 @@ public class AjcTest extends RunSpecIterator { /** @param bugId 100..9999 */ public void setBugId(int bugId) { - LangUtil.throwIaxIfFalse((bugId > 10) && (bugId < 10000), "bad bug id: " + bugId); + LangUtil.throwIaxIfFalse((bugId > 10) && (bugId < 1000000), "bad bug id: " + bugId); this.bugId = bugId; } |