Skip to content

Commit

Permalink
Merge branch 'hist-slicing-by-workitems' of https://github.com/cqse/t…
Browse files Browse the repository at this point in the history
…eamscale-polarion-plugin into hist-slicing-by-workitems
  • Loading branch information
bcdasilv committed Oct 25, 2023
2 parents af56f5f + f997707 commit 05e4ca7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,13 +333,13 @@ public String getModuleTitle() {
public void setModuleTitle(String moduleTitle) {
this.moduleTitle = moduleTitle;
}
public String getModuleFolder( ) {
return moduleFolder;

public String getModuleFolder() {
return moduleFolder;
}

public void setModuleFolder(String moduleFolder) {
this.moduleFolder = moduleFolder;
this.moduleFolder = moduleFolder;
}

public String getProjectId() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static WorkItemForJson castWorkItem(
workItemForJson.setUpdated(workItem.getUpdated().toInstant().toString());
}
if (workItem.getModule() != null) {
IModule module = workItem.getModule();
IModule module = workItem.getModule();
workItemForJson.setModuleId(module.getId());
workItemForJson.setModuleTitle(module.getTitleOrName());
workItemForJson.setModuleFolder(module.getModuleFolder());
Expand Down

0 comments on commit 05e4ca7

Please sign in to comment.