We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DiffJ v1.6.4 doesn't see a difference between the two classes:
public class MyClass { public int a; public MyClass(int a) { this.a = a; } public MyClass() { this(1); } }
and
public class MyClass { public int a; public MyClass(int a) { this.a = a; } public MyClass() { this(2); } }
The difference is: this(1); => this(2);
this(1);
this(2);
This is a real-life case where I experience the issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
DiffJ v1.6.4 doesn't see a difference between the two classes:
and
The difference is:
this(1);
=>this(2);
This is a real-life case where I experience the issue.
The text was updated successfully, but these errors were encountered: