Skip to content

Commit

Permalink
formate code
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoyan1998 committed Oct 11, 2023
1 parent 747e0ab commit 75acf7b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

package org.dinky.controller;

import com.fasterxml.jackson.databind.ObjectMapper;
import org.dinky.data.annotation.Log;
import org.dinky.data.dto.TaskDTO;
import org.dinky.data.dto.TaskRollbackVersionDTO;
Expand Down Expand Up @@ -49,6 +48,7 @@
import org.springframework.web.multipart.MultipartFile;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;

import cn.hutool.core.lang.tree.Tree;
Expand Down Expand Up @@ -174,7 +174,6 @@ public Result<TaskDTO> getOneById(@RequestParam Integer id) {
return Result.succeed(taskService.getTaskInfoById(id));
}


@PostMapping("/getPrintTables")
@ApiOperation("Get Print Tables")
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,4 @@ public interface TaskService extends ISuperService<Task> {
JobModelOverview getJobStreamingOrBatchModelOverview();

List<String> getPrintTables(String statement);

}
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,6 @@ private List<TreeNode<Integer>> dealWithCatalogue(List<Catalogue> catalogueList)
return treeNodes;
}


@Override
public List<String> getPrintTables(String statement) {
// TODO: 2023/4/7 this function not support variable sql, because, JobManager and executor
Expand Down

0 comments on commit 75acf7b

Please sign in to comment.