Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
* @author Youbin Wu
* @author Michal Domagala
* @author Severin Kistler
* @author PiotrDuz
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, only real name can go here.
This part is for the credability: when some one reads our code, they would see who did changes to the class.
When it is nick-name like this there is not too much to acknowledge the person.
Therefore, if you don't want to share your real name, then you might not interested in the credit, thus no need in this @author in the class.

Thanks for understanding!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Understood, this has been changes. No worries ;)

*
* @since 4.0
*
Expand Down Expand Up @@ -601,8 +602,9 @@ protected final boolean renew(long expireAfter) {
}

protected final void stopRenew() {
if (this.renewFuture != null) {
this.renewFuture.cancel(true);
ScheduledFuture<?> renewFutureToCancel = this.renewFuture;
if (renewFutureToCancel != null) {
renewFutureToCancel.cancel(true);
this.renewFuture = null;
}
}
Expand Down