Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: s/ADULT_AGE/VOTING_AGE/g; clearer

...

Code Block
bgColor#FFcccc
public static final int ADULTVOTING_AGE = 18;
public static final int ALCOHOL_AGE = ADULTVOTING_AGE + 3;

A programmer performing routine maintenance may modify the definition for ADULTVOTING_AGE but fail to recognize the resulting change in the definition for ALCOHOL_AGE.

...

Code Block
bgColor#ccccff
public static final int ADULTVOTING_AGE = 18;
public static final int ALCOHOL_AGE = 21;

...