condition always true

This commit is contained in:
Alex Tkachman
2012-08-23 15:15:30 +03:00
parent 8fb449660d
commit a2ff62ecf5
@@ -125,13 +125,8 @@ public class JvmMethodSignature {
@NotNull @NotNull
public String getKotlinParameterType(int i) { public String getKotlinParameterType(int i) {
checkGenericsAvailable(); checkGenericsAvailable();
if (kotlinParameterTypes == null) {
return "";
}
else {
return kotlinParameterTypes.get(i).getKotlinSignature(); return kotlinParameterTypes.get(i).getKotlinSignature();
} }
}
@NotNull @NotNull
public String getKotlinReturnType() { public String getKotlinReturnType() {