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:
Henri Yandell 2006-06-22 23:03:20 +00:00
parent d3c425d6f1
commit cac478de51
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ import java.util.List;
* public class Person {
* String name;
* int age;
* boolean isSmoker;
* boolean smoker;
* ...
*
* public int hashCode() {

View File

@ -38,7 +38,7 @@ import org.apache.commons.lang.ObjectUtils;
* public class Person {
* String name;
* int age;
* boolean isSmoker;
* boolean smoker;
*
* ...
*