Skip to content

Commit

Permalink
Replace @DaTa with @Getter, @Setter, @tostring to avoid decrease in t…
Browse files Browse the repository at this point in the history
…est coverage
  • Loading branch information
EricGao888 committed Jul 19, 2022
1 parent 6f6964f commit 313e3ff
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,19 @@

package org.apache.dolphinscheduler.plugin.task.zeppelin;

import lombok.Data;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import org.apache.dolphinscheduler.plugin.task.api.model.ResourceInfo;
import org.apache.dolphinscheduler.plugin.task.api.parameters.AbstractParameters;
import org.apache.dolphinscheduler.spi.utils.StringUtils;

import java.util.Collections;
import java.util.List;

@Data
@Getter
@Setter
@ToString
public class ZeppelinParameters extends AbstractParameters {

/**
Expand Down

0 comments on commit 313e3ff

Please sign in to comment.