class Test { public static boolean test(String key, String keyValue){ boolean b; // some comment goes here b = key != null && key.equals(keyValue); } }