added @NotNulls to help diagnose EA-26264, cleanup

This commit is contained in:
peter
2011-03-24 14:13:04 +01:00
parent 99dc87fef1
commit 016ad69b85
9 changed files with 20 additions and 85 deletions
@@ -49,7 +49,7 @@ public class SmartTypePointerManagerImpl extends SmartTypePointerManager {
}
@NotNull
public SmartTypePointer createSmartTypePointer(PsiType type) {
public SmartTypePointer createSmartTypePointer(@NotNull PsiType type) {
return type.accept(new SmartTypeCreatingVisitor());
}