We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 577e20e commit 72b29cdCopy full SHA for 72b29cd
plugin/src/main/java/io/jenkins/plugins/casc/BaseConfigurator.java
@@ -58,7 +58,8 @@ public abstract class BaseConfigurator<T> implements Configurator<T> {
58
if (exclusions.contains(field.getName())) continue;
59
if (PersistedList.class.isAssignableFrom(field.getType())) {
60
// see Jenkins#clouds
61
- Attribute attribute = detectActualType(field.getName(), TypePair.of(field));
+ Attribute attribute = detectActualType(field.getName(), TypePair.of(field))
62
+ .getter(field::get); // get value by direct access to public final field
63
attributes.add(attribute);
64
}
65
0 commit comments