TrackingRunner: cosmetic changes in messages

GitOrigin-RevId: ebb7fff3703d0b674741ceabc9079f9feace2b0d
This commit is contained in:
Tagir Valeev
2019-05-20 14:07:43 +03:00
committed by intellij-monorepo-bot
parent b415bd616a
commit 3d9b699f54
3 changed files with 4 additions and 4 deletions
@@ -2,8 +2,8 @@
Value is always false (b.equals("x"); line#15)
According to hard-coded contract, method 'equals' returns 'false' value when this != parameter (equals; line#15)
Condition 'b != "x"' was deduced
Result of 'b != a' is known from line #12 (a.equals(b); line#12)
and result of 'a == "x"' is known from line #14 (a.equals("x"); line#14)
It's known that 'b != a' from line #12 (a.equals(b); line#12)
and it's known that 'a == "x"' from line #14 (a.equals("x"); line#14)
*/
public class T {
@@ -1,6 +1,6 @@
/*
Value is always false (s == null; line#11)
Result of 's != null' is known from line #10 (!"foo".equals(s) && !"bar".equals(s); line#10)
It's known that 's != null' from line #10 (!"foo".equals(s) && !"bar".equals(s); line#10)
*/
import java.util.List;