Skip to content

Commit

Permalink
checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit-CloudSufi committed Jan 8, 2025
1 parent 31885df commit 26bf51e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ private StructuredRecord select(StructuredRecord record1, StructuredRecord recor
if (selectionFunction == null) {
Schema.Field field = record1.getSchema().getField(filterFunction.getField());
if (field == null) {
String errorReason = String.format("Field '%s' cannot be used as a filter field since it does not exist in the output schema",
filterFunction.getField());
String errorReason = String.format("Field '%s' cannot be used as a filter field since it does not exist in " +
"the output schema", filterFunction.getField());
String errorMessage = String.format("Failed to merge values because the field '%s' cannot be used as a " +
"filter field since it does not exist in the output schema", filterFunction.getField());
throw ErrorUtils.getProgramFailureException(new ErrorCategory(ErrorCategory.ErrorCategoryEnum.PLUGIN),
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1004,12 +1004,12 @@
<property><name>!cloudBuild</name></property>
</activation>
<modules>
<module>wrangler-transform</module>
<module>google-cloud</module>
<module>kafka-plugins</module>
<module>amazon-s3-plugins</module>
<module>condition-plugins</module>
<module>azure</module>
<!-- <module>wrangler-transform</module>-->
<!-- <module>google-cloud</module>-->
<!-- <module>kafka-plugins</module>-->
<!-- <module>amazon-s3-plugins</module>-->
<!-- <module>condition-plugins</module>-->
<!-- <module>azure</module>-->
</modules>
</profile>
<profile>
Expand Down

0 comments on commit 26bf51e

Please sign in to comment.