Skip to content

Commit

Permalink
DSC-1304 checkstyle!
Browse files Browse the repository at this point in the history
  • Loading branch information
frabacche committed Oct 18, 2023
1 parent 051e17e commit a5c859e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public RootRest convert() {
rootRest.setDspaceUI(configurationService.getProperty("dspace.ui.url"));
rootRest.setDspaceServer(configurationService.getProperty("dspace.server.url"));
rootRest.setDspaceVersion(CrisConstants.DSPACE_BASE_VERSION);
rootRest.setCrisVersion(getSourceVersion());
rootRest.setCrisVersion(getSourceVersion());
return rootRest;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class RootRest extends RestAddressableModel {
private String dspaceVersion;
private String crisVersion;

public String getCategory() {
public String getCategory() {
return CATEGORY;
}

Expand Down Expand Up @@ -69,12 +69,12 @@ public void setDspaceVersion(String dspaceVersion) {
}

public String getCrisVersion() {
return crisVersion;
}
return crisVersion;
}

public void setCrisVersion(String crisVersion) {
this.crisVersion = crisVersion;
}
public void setCrisVersion(String crisVersion) {
this.crisVersion = crisVersion;
}

@Override
public boolean equals(Object object) {
Expand Down

0 comments on commit a5c859e

Please sign in to comment.