Fixing isSmoker attribute name to smoker to match the code example in both of these files - spotted by Corey Tripp in LANG-264
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@416495 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d3c425d6f1
commit
cac478de51
|
@ -42,7 +42,7 @@ import java.util.List;
|
||||||
* public class Person {
|
* public class Person {
|
||||||
* String name;
|
* String name;
|
||||||
* int age;
|
* int age;
|
||||||
* boolean isSmoker;
|
* boolean smoker;
|
||||||
* ...
|
* ...
|
||||||
*
|
*
|
||||||
* public int hashCode() {
|
* public int hashCode() {
|
||||||
|
|
|
@ -38,7 +38,7 @@ import org.apache.commons.lang.ObjectUtils;
|
||||||
* public class Person {
|
* public class Person {
|
||||||
* String name;
|
* String name;
|
||||||
* int age;
|
* int age;
|
||||||
* boolean isSmoker;
|
* boolean smoker;
|
||||||
*
|
*
|
||||||
* ...
|
* ...
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue