Skip to content

Commit

Permalink
AbstractModelLoader: removed a test for something which can't possibl…
Browse files Browse the repository at this point in the history
…y ever be true
  • Loading branch information
FroMage committed Feb 23, 2012
1 parent 284d3e9 commit 30ab32c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -881,7 +881,7 @@ private void complete(ClassOrInterface klass, ClassMirror classMirror) {
}
}

klass.setStaticallyImportable(!isCeylon && (classMirror.isStatic() || (classMirror instanceof LazyClass)));
klass.setStaticallyImportable(!isCeylon && classMirror.isStatic());

setExtendedType(klass, classMirror);
setSatisfiedTypes(klass, classMirror);
Expand Down

0 comments on commit 30ab32c

Please sign in to comment.