Typos fixed

This commit is contained in:
Andrey Breslav
2013-02-12 18:02:44 +04:00
parent 5cf17f089f
commit c86f0de79f
4 changed files with 7 additions and 7 deletions
@@ -253,7 +253,7 @@ public class JavaTypeTransformer {
}
private static boolean isRaw(@NotNull PsiClassType classType, boolean argumentsExpected) {
// The second option is needed because sometimes we get weird versions of JDK classes in teh class path,
// The second option is needed because sometimes we get weird versions of JDK classes in the class path,
// such as collections with no generics, so the Java types are not raw, formally, but they don't match with
// their Kotlin analogs, so we treat them as raw to avoid exceptions
return classType.isRaw() || argumentsExpected && classType.getParameterCount() == 0;