Skip to content

Commit

Permalink
Rename CompressStep to CompressFiles and move it into transport package
Browse files Browse the repository at this point in the history
- also auto-reformat code fitting to default-style

Signed-off-by: Benjamin Rögner <[email protected]>
  • Loading branch information
roegi committed Jan 10, 2025
1 parent 2cdb424 commit 1003893
Show file tree
Hide file tree
Showing 5 changed files with 533 additions and 491 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import static com.here.xyz.jobs.steps.execution.LambdaBasedStep.ExecutionMode.SYNC;

import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.here.xyz.jobs.steps.impl.CompressStep;
import com.here.xyz.jobs.steps.impl.transport.CompressFiles;
import com.here.xyz.jobs.steps.resources.Load;
import com.here.xyz.util.service.BaseHttpServerVerticle.ValidationException;
import java.util.List;
Expand All @@ -31,7 +31,7 @@
* A simplified synchronous version of the {@link LambdaBasedStep}.
*/
@JsonSubTypes({
@JsonSubTypes.Type(value = CompressStep.class)
@JsonSubTypes.Type(value = CompressFiles.class)
})
public abstract class SyncLambdaStep extends LambdaBasedStep<SyncLambdaStep> {

Expand Down

This file was deleted.

Loading

0 comments on commit 1003893

Please sign in to comment.