Polish "Use constructor rather than Collection.addAll"
See gh-41053
This commit is contained in:
@@ -239,8 +239,7 @@ public final class ConfigData {
|
||||
}
|
||||
|
||||
private Options copy(Consumer<EnumSet<Option>> processor) {
|
||||
EnumSet<Option> options = EnumSet.noneOf(Option.class);
|
||||
options.addAll(this.options);
|
||||
EnumSet<Option> options = EnumSet.copyOf(this.options);
|
||||
processor.accept(options);
|
||||
return new Options(options);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2023 the original author or authors.
|
||||
* Copyright 2012-2024 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2022 the original author or authors.
|
||||
* Copyright 2012-2024 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
Reference in New Issue
Block a user