You are right, it surrounds the value with additional double quotes in quick look.

But when you check the value from the Expresions , that value is true. In addition, it fixes the previous quick preview behavior.

But still, an exit is expected. These two values ββare equal. I believe that this is a mistake, because this behavior does not make sense to me. Maybe I'm wrong. I do not know if this helped, and if it can be considered as an answer, but I wanted to include screenshots, and the comments do not support this.
The code is not from the android project. Just a simple Java project. I am using eclipse Kepler.
class OtherClass { public static final String ABC = "abc"; } public class MainJsoup { public static void main(String[] args) throws Exception { String test = "abc"; if (test.equals(OtherClass.ABC)) { System.out.println("They are equal."); } else { System.out.println("They are unequal."); System.out.println("OtherClass.ABC = " + OtherClass.ABC); } } }
alkis source share