Skip to content

Commit

Permalink
removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit-CloudSufi committed Jan 9, 2025
1 parent 3b3b46f commit 27ba401
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package io.cdap.plugin.batch.aggregator;

import com.google.common.base.Joiner;
import io.cdap.cdap.api.data.schema.Schema;
import io.cdap.cdap.api.exception.ErrorCategory;
import io.cdap.cdap.api.exception.ErrorType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@

import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import javax.annotation.Nullable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ private Schema getGroupKeySchema(Schema inputSchema) {
"Cannot group by field '%s' because it does not exist in input schema %s",
groupByField, inputSchema);
throw ErrorUtils.getProgramFailureException(new ErrorCategory(ErrorCategory.ErrorCategoryEnum.PLUGIN),
error, error, ErrorType.USER, true, new IllegalArgumentException());
error, error, ErrorType.USER, false, new IllegalArgumentException());
}
fields.add(fieldSchema);
}
Expand Down
4 changes: 2 additions & 2 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>wrangler-transform</module>
<module>google-cloud</module>
<module>kafka-plugins</module>
<module>amazon-s3-plugins</module>
<module>condition-plugins</module>
<module>azure</module>
<module>azure</module>-->
</modules>
</profile>
<profile>
Expand Down

0 comments on commit 27ba401

Please sign in to comment.