* Remove unnecessary null check.

This commit is contained in:
hns 2006-01-25 16:42:02 +00:00
parent fb6c213f1c
commit 41233a115d

View file

@ -185,7 +185,7 @@ public final class Relation {
}
// make sure the type we're referring to is up to date!
if (otherType != null && otherType.needsUpdate()) {
if (otherType.needsUpdate()) {
otherType.update();
}