simplifying of polyadic expressions:IDEA-76076

This commit is contained in:
anna
2011-10-28 11:44:55 +02:00
parent 514850e10f
commit 7b0692acbc
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
// "Simplify boolean expression" "true"
class X {
void f(boolean b, boolean c) {
if (b && c) return;
}
}

View File

@@ -0,0 +1,6 @@
// "Simplify boolean expression" "true"
class X {
void f(boolean b, boolean c) {
if (b && tr<caret>ue && c) return;
}
}