Skip to content

Commit

Permalink
Google Java Format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 24, 2023
1 parent d7984c9 commit f997707
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 f997707

Please sign in to comment.