blob: c4e2107b3f0d2e3f726d83c6965100c8e04f631b [file] [log] [blame]
class Test {
public static boolean test(String key, String keyValue){
boolean b;
// some comment goes here
b = key != null && key.equals(keyValue);
}
}