condition always true

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