Fix line-length violation in SetProcessor
This commit addresses a checkstyle line-length violation in SetProcessor.java.
This commit is contained in:
parent
72fb93e612
commit
0cf1d16187
|
@ -88,7 +88,11 @@ public final class SetProcessor extends AbstractProcessor {
|
|||
String field = ConfigurationUtils.readStringProperty(TYPE, processorTag, config, "field");
|
||||
Object value = ConfigurationUtils.readObject(TYPE, processorTag, config, "value");
|
||||
boolean overrideEnabled = ConfigurationUtils.readBooleanProperty(TYPE, processorTag, config, "override", true);
|
||||
return new SetProcessor(processorTag, templateService.compile(field), ValueSource.wrap(value, templateService), overrideEnabled);
|
||||
return new SetProcessor(
|
||||
processorTag,
|
||||
templateService.compile(field),
|
||||
ValueSource.wrap(value, templateService),
|
||||
overrideEnabled);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue