mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Remove final on @ParametersDelegate field
Compile-time constant inlining may interfere with JCommander's processing if a field is made final - @ParametersDelegate fields are particularly misleading. Remove the one instance of that and add warning comments elsewhere. See ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136469351
This commit is contained in:
parent
e127920f20
commit
afa4d66601
3 changed files with 5 additions and 1 deletions
|
@ -21,6 +21,7 @@ import google.registry.bigquery.BigqueryConnection;
|
|||
abstract class BigqueryCommand implements Command {
|
||||
|
||||
/** Parameter delegate for encapsulating flags needed to set up the {@link BigqueryConnection}. */
|
||||
// Do not make this final - compile-time constant inlining may interfere with JCommander.
|
||||
@ParametersDelegate
|
||||
private BigqueryParameters bigqueryParameters = new BigqueryParameters();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue