added missing input file for SimplifyBoolean Checks

This commit is contained in:
Lars Kühne 2002-10-23 05:17:13 +00:00
parent c2b22a74a2
commit d43823775a
1 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2001
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle;
/**
Contains boolean logic that can be simplified.
@author lkuehne
*/
public class InputSimplifyBoolean
{
public static boolean isOddMillis()
{
boolean even = System.currentMillis() % 2 == 0;
// can be simplified to "if (even)"
if (even == true) {
return false;
}
else {
return true;
}
// return can be simplified to "return !even"
}
public static boolean isOddMillis2()
{
boolean even = System.currentMillis() % 2 == 0;
// can be simplified to "return !even"
if (!even)
return true;
else
return false;
}
public static boolean giveMeTrue()
{
boolean tt = isOddMillis() || true;
boolean ff = isOddMillis() && false;
return !false || (true != false);
}
}