Perhaps this has already been mentioned:
I have a boolean:
private boolean isStarted;
I use Encapsulate Fields, which creates this setter:
private void setStarted(boolean started) {
isStarted = started;
}
I use Rename to rename isStarted to started. This changes the setter to the following:
private void setStarted(boolean started) {
started = started;
}
... which of course, does nothing.
The information contained in this e-mail including any attachments may constitute Corvis Corporation Proprietary Information that is subject to Non-Disclosure Agreement and cannot be disclosed to any other party without the express consent of Corvis Corporation.
If you are neither the intended recipient of this e-mail nor responsible for delivering this e-mail to the intended recipient, note that any dissemination, distribution, copying, or retention of this e-mail is prohibited.
If you believe you have received this e-mail in error, we request that you notify the sender by return e-mail and then delete this e-mail and any return e-mail immediately.
