fixed incorrect asssertion

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@31447 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-09-30 11:39:32 +00:00
parent b6d8004050
commit aae279ec91

View file

@ -27,7 +27,7 @@
- (void) dealloc
{
NSAssert(nil != owner, NSInternalInconsistencyException);
NSAssert(nil == owner, NSInternalInconsistencyException);
[item release];
[super dealloc];
}