Skip to content

Commit

Permalink
TACKLE-356: alter order of columns in export csv file (#183)
Browse files Browse the repository at this point in the history
* TACKLE-356: alter order of columns in export csv file

* Remove unused imports

Co-authored-by: Marco Rizzi <[email protected]>
  • Loading branch information
m-brophy and mrizzi authored Jan 26, 2022
1 parent d16fcfd commit 4f84941
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ public abstract class ApplicationImportForCsv {
private String comments;
@JsonProperty("Business Service")
private String businessService;
@JsonProperty("Dependency")
private String dependency;
@JsonProperty("Dependency Direction")
private String dependencyDirection;
@JsonProperty("Tag Type 1")
private String tagType1;
@JsonProperty("Tag 1")
Expand Down Expand Up @@ -97,10 +101,6 @@ public abstract class ApplicationImportForCsv {
private String tagType20;
@JsonProperty("Tag 20")
private String tag20;
@JsonProperty("Dependency")
private String dependency;
@JsonProperty("Dependency Direction")
private String dependencyDirection;
}


Expand Down

0 comments on commit 4f84941

Please sign in to comment.