Resolved some TODOs.

This commit is contained in:
dsyer
2008-01-28 13:56:48 +00:00
parent 39ea7775bd
commit fd012bd49c
21 changed files with 36 additions and 869 deletions

View File

@@ -70,8 +70,8 @@ public class SynchronizedAttributeAccessorTests extends TestCase {
public void testEqualsWrongType() {
accessor.setAttribute("foo", "bar");
Map another = Collections.singletonMap("foo", "bar");
//TODO accessor and another are instances of unrelated classes, they can never be equal
// Accessor and another are instances of unrelated classes, they should
// never be equal...
assertFalse(accessor.equals(another));
}