Skip to content
New issue

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

Suspicious assignment warning is triggered when using the Copy Constructor of a field within an object #5

Open
oopsies49 opened this issue May 3, 2019 · 0 comments

Comments

@oopsies49
Copy link

The inspection should recognize that using a copy constructor within a copy constructor is necessary when dealing with non-primitive fields.

class SomeObject {
	private SomeOtherObject someObjectField;

	public SomeObject(SomeObject other) {
		this.someObjectField = new SomeOtherObject(other.someObjectField);
	}
}

class SomeOtherObject {
	private String field;

	public SomeOtherObject(SomeOtherObject other) {
		this.field = other.field;
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant