Removed/commented out/tagged some unused local variables.

Added a JUnit test for the new Trie that fails at present since the Trie is
case-insensitive.  Running JUnit tests is not something our build system
knows about at present, but Eclipse 2.0 makes it very easy.

Fixed a few compiler errors due to imports I'd forgotten.
This commit is contained in:
dchandler 2002-11-02 16:01:40 +00:00
parent b8391e923d
commit a6cc4a7ff3
31 changed files with 292 additions and 179 deletions

View file

@ -67,7 +67,7 @@ public class ThdlLazyExceptionTest extends TestCase {
junit.textui.TestRunner.run(ThdlLazyExceptionTest.class);
}
/*
/**
* Test for void ThdlLazyException()
*/
public void testThdlLazyException() {
@ -81,7 +81,7 @@ public class ThdlLazyExceptionTest extends TestCase {
} /* don't catch anything else. */
}
/*
/**
* Test for void ThdlLazyException(String)
*/
public void testThdlLazyExceptionString() {
@ -91,7 +91,7 @@ public class ThdlLazyExceptionTest extends TestCase {
assertTrue(null == e.getRealException());
}
/*
/**
* Test for void ThdlLazyException(String, Throwable)
*/
public void testThdlLazyExceptionStringThrowable() {
@ -103,7 +103,7 @@ public class ThdlLazyExceptionTest extends TestCase {
assertTrue("bah".equals(e.getRealException().getMessage()));
}
/*
/**
* Test for void ThdlLazyException(Throwable)
*/
public void testThdlLazyExceptionThrowable() {