Fix line-length violation in SetProcessor

This commit addresses a checkstyle line-length violation in
SetProcessor.java.
This commit is contained in:
Jason Tedor 2016-04-28 23:41:16 -04:00
parent 72fb93e612
commit 0cf1d16187
1 changed files with 5 additions and 1 deletions

View File

@ -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);
}
}
}