interestingly, if you write ``` if(long.equals(in...
# getting-started
l
interestingly, if you write
Copy code
if(long.equals(int)) {
  ...		
}
the IDE suggests to replace it with
==
, even though that doesn’t work 🙈
d
The
equals
call will never be true, either.
l
yeah I know, it’s just that the IDE suggests to change something to something that won’t work
d
Neither works, it's just explicit about one of them 😄
l
😅
k
Please report an issue
k
@kirillrakhman There was already an issue about this.
👍 1