Files
openide/java/java-impl/resources/intentionDescriptions/ExpandBooleanIntention/after.java.template
T
2025-02-05 04:43:28 +00:00

10 lines
123 B
Plaintext

public class X {
boolean f(boolean a) {
if(a){
return true;
}
else{
return false;
}
}
}