mirror of
https://github.com/github/codeql.git
synced 2026-02-24 02:43:40 +01:00
4 lines
69 B
Java
4 lines
69 B
Java
public boolean isEven(int x) {
|
|
return x % 1 == 0; //Does not work
|
|
}
|