Don't need internal ivar name for a boolean to carry a "Flag" postfix.

This commit is contained in:
Gary Gregory 2017-12-21 08:47:30 -07:00
parent 49a876cb1c
commit 6dfc3e6403
1 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ public class BasicThreadFactory implements ThreadFactory {
private final Integer priority;
/** Stores the daemon status flag. */
private final Boolean daemonFlag;
private final Boolean daemon;
/**
* Creates a new instance of {@code ThreadFactoryImpl} and configures it
@ -122,7 +122,7 @@ private BasicThreadFactory(final Builder builder) {
namingPattern = builder.namingPattern;
priority = builder.priority;
daemonFlag = builder.daemon;
daemon = builder.daemon;
uncaughtExceptionHandler = builder.exceptionHandler;
threadCounter = new AtomicLong();
@ -159,7 +159,7 @@ public final String getNamingPattern() {
* @return the daemon flag
*/
public final Boolean getDaemonFlag() {
return daemonFlag;
return daemon;
}
/**