Merge remote branch 'origin/master'

This commit is contained in:
Alex Tkachman
2012-02-21 14:57:47 +02:00
5 changed files with 48 additions and 5 deletions
@@ -106,10 +106,12 @@ public class TypeUtils {
}
};
@NotNull
public static JetType makeNullable(@NotNull JetType type) {
return makeNullableAsSpecified(type, true);
}
@NotNull
public static JetType makeNotNullable(@NotNull JetType type) {
return makeNullableAsSpecified(type, false);
}