Pattern: Use of public field
Issue: -
Using public fields is considered to be a bad design. Use properties instead.
Example of violations:
class Person {
public String name
}
Pattern: Use of public field
Issue: -
Using public fields is considered to be a bad design. Use properties instead.
Example of violations:
class Person {
public String name
}